搜索资源列表
switch_led
- 对富士通frv400架构,redhat为内核的嵌入式系统编写了对LED,和开关的驱动程序,通过按键产生中断控制LED的熄和灭
2008年微机原理电子钟课程设计
- 设计一个电子钟,用4个数码管显示时间 由8254中断定时,用小键盘控制计时和显示: 1键(清除) 显示初值 00、00
arm_led_interrupt
- 在s3c6410上实现采用中断按键控制led灯点亮,裸板驱动(c语言)-to bright the led with c throght loop
linux
- linux课程实验的题目和参考程序。有进程管理,进程控制和软中断。-linux courses experimental procedures and reference topics. Have the process management, process control and soft interrupt.
process_manager
- 支持多道程序的进程控制模块的设计与实现,要求完成以下功能: 1,进程控制:创建、撤销、阻塞、唤醒 2,进程调度:CPU调度算法 3,进程同步:信号量的定义、信号量的操作(wait、signal) 4,内存管理:实现页式内存管理、LRU页面置换 5,中断处理:中断响应、中断处理 6,时钟管理:时钟、定时器 7,用图形化方式展示多进程并发执行过程 -Support the process of multi-channel process control module of
keyscan
- 此程序是基于S3C2440控制平台的。它主要是通过中断实现开发板自带按键的控制-This procedure is based on the S3C2440 control platform. It is mainly through the disruption of development board comes with the realization of the control button
ModuleTest_a
- I/O驱动程序 设备驱动程序运行在内核空间,而应用程序则运行在用户空间,Linux操作系统通过系统调用和硬件中断完成从用户空间到内核空间的控制转移,执行系统调用的内核代码在进程的上下文中执行,也就是说代表调用进程操作而且可以访问进程地址空间的数据,中断处理程序相对进程而言是异步的,而且与任何一个进程都无关。 -I/O driver Device drivers run in kernel space, while the application is run in user
Linux-driver-development7
- 作者:华清远见嵌入式学院。《Linux设备驱动开发详解》(08&09年度畅销榜TOP50)第7章、Linux设备驱动中的并发控制。Linux设备驱动中必须解决的一个问题是多个进程对共享资源的并发访问,并发访问会导致竞态。Linux提供了多种解决竞态问题的方式,这些方式适合不同的应用场景。7.1节描述了并发和竞态的概念及发生场合。7.2~7.5节分别讲解了中断屏蔽、原子操作、自旋锁和信号量等并发控制机制。7.6节讲解增加并发控制后的globalmem的设备驱动。-Author: HuaQing v
2440addr
- s3c2440中断,内存控制寄存器,UART寄存器等的定义,头文件-s3c2440 interrupt, memory control register, UART register definitions header file
BIOS-Rootkit-
- Intel从386开始,在调试方面引入了调试寄存器和硬件断点的概念。 IA-32处理器定义了8个调试寄存器,分别为DR0~DR7。在32位模式下,它们都是32位的;在64位模式下,都是64位。 DR4和DR5是保留的。其他6个寄存器为:4个32位的调试地址寄存器(DR0~DR3);1个32位的调试控制寄存器(DR7)和1个32位的调试状态寄存器(DR6)。通过以上寄存器可以最多设置4个断点,DR0~DR3用来指定断点的内存(线性地址)或I/O地址。DR7用来进一步定义断点的中断条件。
Understanding-The-Linux-Kernel
- 关于Unix内核的经典教程,由浅入深的介绍Unix内核中的中断控制、内存分配、任务调控等-Classic tutorial on the Unix kernel, progressive approach to the introduction of Unix kernel interrupt control, memory allocation, task control, etc.
2intauart
- LPC2000 中断和串口程序,ARM开启两个中断源Eint1与Eint2,分别用一个按钮来控制。在没有中断的时候两个LED都缓慢闪烁,当任何一个中断被出发的时候,对应的LED会急促闪烁,逐渐回复正常。 此外,使用一个串口来发送当前状态,在无中断的时候发送正常状态报告,当有中断的时候,串口发送中断源。 -lpc2000 interrupt and uart proc,tow interrupt resorces and seperately control tow led2 and se
DCmotor
- 基于C语言的DSP程序,应用DSP定时器及中断, 实现直流电动机控制 -DSP program based on the C language, application the DSP timer and interrupt, DC motor control
LED
- RM9 2400开发板LED灯中断控制源码-failed to translate
GPIO_Port_A_ISR.c
- 端口A中断服务函数根据底层程序取得的迷宫信息,经过该智能算法控制电脑鼠的下一状态,并送往底层驱动程序执行。-Port A interrupt service routine based on the underlying program maze of information, through the intelligent algorithm to control the next state of the computer mouse and sent to the bottom of th
Interrupt
- TQ2440开发板的中断使用,是从ADS移植到keil的,能够按键实现中断,中断控制LED。-TQ2440 development board discontinue use keil transplant from ADS, capable of keys to achieve interrupt, interrupt control LED.
LED
- linux系统下LED灯采取中断形式GPIO控制-in linux LED lights take the form of an interrupt GPIO control
STEP-MOTOR
- 在Linux系统下步进电机控制程序,通过中断控制器实现按键控制-In the Linux system stepper motor control procedures to achieve controlled by the interrupt controller buttons
interrupt5
- 这是一个外部中断,用按键来控制小灯的亮灭,-This is an external interrupt, with small buttons to control lights out,
ProcessManager
- 1.进程的创建 编写一段程序,使用系统调用fork()创建两个子进程。当此程序运行时,在系统中有一个父进程和两个子进程活动。让每一个进程在屏幕上显示一个字符:父进程显示字符“a”;子进程分别显示字符“b”和字符“c”。试观察记录屏幕上的显示结果,并分析原因。 2.进程的控制 修改已有程序,将每个进程输出一个字符改为每个进程输出几行字符,再观察程序执行时屏幕上的现象,并分析原因。 如果在程序中使用系统调用lockf()来给每一个进程加锁,可以实现进程之间的互斥,观察并分析出现的现象