搜索资源列表
kaka
- linux2.6驱动模块,包含驱动makefile,应用层程序,定时器,io口操作,中断操作,led操作,对于想熟悉linux驱动的朋友很不错-linux2.6 drive module, including the driver makefile, the application layer procedures, timer, io port operation, interrupt operation, led the operation, for want of a friend fam
lab5
- microblaze的定时器与中断控制器的使用-microblaze timer and interrupt controller for use
timer
- that s as the timer interrupt used in the linux application as the sample -that s as the timer interrupt used in the linux application as the sample
Linux-driver-development10
- 作者:华清远见嵌入式学院。《Linux设备驱动开发详解》(08&09年度畅销榜TOP50)第10章、中断与时钟。本章主要讲解Linux设备驱动编程中的中断与定时器处理。由于中断服务程序的执行并不存在于进程上下文,因此,要求中断服务程序的时间尽可能地短。因此,Linux在中断处理中引入了顶半部和底半部分离的机制。另外,内核中对时钟的处理也采用中断方式,而内核软件定时器最终依赖于时钟中断。10.1节讲解中断和定时器的概念及处理流程。10.2节讲解Linux中断处理程序的架构,顶半部、底半部之间的关系
Linux-driver-development12
- 作者:华清远见嵌入式学院。《Linux设备驱动开发详解》(08&09年度畅销榜TOP50)第12章、Linux字符设备驱动综合实例。本章将分析5个典型的字符设备驱动,在这些驱动中,将灵活地运用到前面各章所讲解的内容。12.1节讲解按键的设备驱动,加深读者对字符设备驱动架构、阻塞与非阻塞、中断、定时器等相关知识的理解。12.2节讲解触摸屏的设备驱动,触摸屏的设备驱动比按键的设备驱动稍微复杂一些,但是很类似。12.3节讲解TI的DSP提供给通用CPU的HPI(主机并行接口)的设备驱动,硬件结构为AR
DCmotor
- 基于C语言的DSP程序,应用DSP定时器及中断, 实现直流电动机控制 -DSP program based on the C language, application the DSP timer and interrupt, DC motor control
irq-vic-timer
- S3C64XX - Interrupt handling driver- S3C64XX - Interrupt handling driver
namespace
- Set up timer interrupt for Linux v2.13.6.
mc146818-time
- For check timing call set_rtc_mmss() 500ms used in timer interrupt. -For check timing call set_rtc_mmss() 500ms used in timer interrupt.
cevt-r4k
- Possibly handle a performance counter interrupt. Return true if the timer interrupt should not be checked.
entry_32
- NOTE: This code handles signal-recognition, which happens every time after a timer-interrupt and after each system call.
timer-u300
- This timer contains four timers which can fire an interrupt each.
irq_vectors
- local_timer - called when entering exiting a local timer interrupt vector handler.
nv25
- We disable the timer in the world switch and let it be handled by kvm_timer_sync_hwstate(). Getting a timer interrupt at this point is a sure sign of some major breakage.
SIMCom_SIM800H_EAT_Eclipse_Installation_User-Manu
- note: 1.please follow the user guide:SIMCom_SIM800H_EAT_RVCT_Installation_User Manual_V1.01.pdf which is in foler environment_RVCT to install the environment of sim800H EAT. 2.please install the usb driver before you upgrading the firmware. 3.s
7.滴答定时器实验
- Systick就是一个定时器而已,只是它放在了NVIC中,主要的目的是为了给操作系统提供一个硬件上的中断(号称滴答中断)。滴答中断?这里来简单地解释一下。操作系统进行运转的时候,也会有“心跳”。它会根据“心跳”的节拍来工作,把整个时间段分成很多小小的时间片,每个任务每次只能运行一个“时间片”的时间长度就得退出给别的任务运行,这样可以确保任何一个任务都不会霸占整个系统不放。或者把每个定时器周期的某个时间范围赐予特定的任务等,还有操作系统提供的各种定时功能,都与这个滴答定时器有关。因此,需要一个定时