CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 搜索资源 - 中断处理

搜索资源列表

  1. touch

    0下载:
  2. 在驱动程序中设定了触摸屏所处的7个不同状态,分别用从-1到5的数字表征,这7个状态构成了一个触摸屏状态机,系统根据当前状态做出下一步的处理,如表1所示。整个软件设计根据功能可以划分为5个部分,分别是初始化、设备打开、读操作、中断处理以及I/O控制-In the driver set the touch screen in which seven different states, respectively, from-1 to 5 the number of characterization,
  3. 所属分类:SCM

    • 发布日期:2017-03-22
    • 文件大小:1341
    • 提供者:solo
  1. duan

    0下载:
  2. 模拟中断事件的处理 中断机构能发现中断事件,且当发现中断事件后迫使正在处理器上执行的进程暂时停止执行,而让操作系统的中断处理程序占有处理器去处理出现的中断事件-Simulated interrupt events can be found to deal with disruption of institutions disruptions and interruptions when found after the incident is forcing processors to imp
  3. 所属分类:OS Develop

    • 发布日期:2017-03-30
    • 文件大小:1041
    • 提供者:zhang
  1. IRQ

    0下载:
  2. ARM嵌入式系统关于IRQ中断处理基于c语言的实验代码-ARM Embedded System on the IRQ interrupt handling of the experiment based on the c language code
  3. 所属分类:Embeded-SCM Develop

    • 发布日期:2017-04-03
    • 文件大小:27413
    • 提供者:萌萌
  1. eCosIDP

    0下载:
  2. 描述在ECos下如何创建中断处理程序,好的中断处理能够提高系统的稳定性和执行效率,值得一看-Ecos describe how to create interrupt handling procedures, interruption of treatment can best improve the stability of the system and implementation of efficiency, see
  3. 所属分类:Embeded-SCM Develop

    • 发布日期:2017-04-14
    • 文件大小:4066
    • 提供者:jack
  1. zhongduan

    0下载:
  2. 实现一个中断处理程序,要求在主程序运行过程中,每隔20秒响铃一次,同时在屏幕上显示信息“The bell is ring!”,按键后恢复原状。-Achieve an interrupt handling procedures, the requirements at the main program is running every 20 seconds ringing once, at the same time information on the screen " The bell
  3. 所属分类:assembly language

    • 发布日期:2017-04-12
    • 文件大小:718
    • 提供者:wei
  1. usart_half_mode

    0下载:
  2. Avr单片机半双工模式Usart驱动,用中断实现, 可以像打开文件一样处理usart数据。-Usart communication half mode, implements by interrupt, Can process as file
  3. 所属分类:SCM

    • 发布日期:2017-04-09
    • 文件大小:4192
    • 提供者:沙卡
  1. Bycore-1.0.12

    0下载:
  2. Bycore是一个嵌入式操作系统内核。Bycore包括内存管理、任务管理、中断管理、任务互斥、同步与通信管理等功能。Bycore全部由C语言完成,只有少量的与硬件有关的代码由汇编代码完成。Bycore支持64优先级的多任务管理,任务数量由实际的内存大小决定。Bycore是一个抢占式的内核,任务间的切换时间确定,使得用户可以完全确定任务的切换时机。内存管理采用一种全新的算分配策略,兼顾了分配速度、管理简单、利用率高等特点。为便于移植,只需要简单修改Bycore提供的几个函数即可。另外,Bycore
  3. 所属分类:SCM

    • 发布日期:2017-04-16
    • 文件大小:135769
    • 提供者:李默涵
  1. process_manager

    2下载:
  2. 支持多道程序的进程控制模块的设计与实现,要求完成以下功能: 1,进程控制:创建、撤销、阻塞、唤醒 2,进程调度:CPU调度算法 3,进程同步:信号量的定义、信号量的操作(wait、signal) 4,内存管理:实现页式内存管理、LRU页面置换 5,中断处理:中断响应、中断处理 6,时钟管理:时钟、定时器 7,用图形化方式展示多进程并发执行过程 -Support the process of multi-channel process control module of
  3. 所属分类:Windows Kernel

    • 发布日期:2016-02-16
    • 文件大小:1977223
    • 提供者:yefeng
  1. 32bitcycletimer

    0下载:
  2. 基于《Stellaris外设驱动库》的例程:定时器32位周期定时示例 请掌握以下库函数的用法: TimerConfigure() TimerLoadSet() TimerEnable()/TimerDisable() TimerIntEnable() TimerIntStatus() TimerIntClear() 本实验实现了如何定时器产生周期性中断。定时器被设置为每秒产生2次中断,在每次进入中断处理程序中时都翻转一侧对应的GPIO端口。
  3. 所属分类:Embeded-SCM Develop

    • 发布日期:2017-04-16
    • 文件大小:12387
    • 提供者:
  1. Timer16BitOneShot

    0下载:
  2. 基于《Stellaris外设驱动库》的例程: 定时器16位单次触发定时示例 本实验演示了如何将定时器仅产生一次中断,用TimerFlag作为是否进入过中断的标志。在中断处理函数中,置位TimerFlag,从而熄灭LED1。 -Based on " Stellaris peripheral driver library" of routines: 16-bit timer to trigger a single sample from time to time in
  3. 所属分类:Embeded-SCM Develop

    • 发布日期:2017-04-04
    • 文件大小:10509
    • 提供者:
  1. LM3STimer16BitPeriodic

    0下载:
  2. 基于《Stellaris外设驱动库》的例程:定时器16位周期定时示例 本实验程序演示了如何使用定时器实现周期性中断。定时器从装载值递减至0后产生一次中断,在中断处理函数中翻转一次LED1。LED1指示灯指示了每次中断及中断的速率。-Based on " Stellaris peripheral driver library" of routines: 16-bit cycle timer example of the experimental procedures f
  3. 所属分类:Embeded-SCM Develop

    • 发布日期:2017-04-07
    • 文件大小:11027
    • 提供者:
  1. C

    0下载:
  2. 中断处理是DSP应用系统中必不可少的一个重要环节。本文阐述DSP芯片TMS320F2812的中断机制和中断处理过程,并给出用C语言编程实现中断处理过程的思路和实例。 -DSP interrupt handling applications is an important part essential. In this paper, TMS320F2812 chip DSP interrupt mechanism and interrupt handling process, and give
  3. 所属分类:DSP program

    • 发布日期:2017-04-04
    • 文件大小:207069
    • 提供者:梁丹
  1. hexinjishubiancheng

    0下载:
  2. 操作系统实验教程——核心技术编程实例。包括中断处理,文件管理等具体实例。主要采用汇编语言。-Experimental tutorial operating system- the core technology programming examples. Including interrupt handling, document management, such as concrete examples. The main use of assembly language.
  3. 所属分类:Process-Thread

    • 发布日期:2017-05-21
    • 文件大小:6224611
    • 提供者:陈晨
  1. interrupt2

    0下载:
  2. 中断处理说明,汇编程序,大家或许会需要的-interrupt
  3. 所属分类:assembly language

    • 发布日期:2017-04-10
    • 文件大小:1126
    • 提供者:张三
  1. aa

    0下载:
  2. 实现对触摸屏的接口设置 中断处理 从而对触摸屏进行驱动-The realization of the interface of the touch screen interrupt handling settings on the touch screen in order to drive
  3. 所属分类:SCM

    • 发布日期:2017-04-09
    • 文件大小:113801
    • 提供者:zzzz
  1. mdisp_key

    0下载:
  2. 自认为比较好的按键处理程序 在中断内检测,主程序中处理-disp_key
  3. 所属分类:MiddleWare

    • 发布日期:2017-03-30
    • 文件大小:4233
    • 提供者:张传兵
  1. JD

    0下载:
  2. MCS-51的通讯程序 怎么使用51的通讯中断已经中断处理-MCS-51 MOV SDFAFAH[O APSIFAP AFIJASP ASLFDJIAP [OPAS[ AIFA[ ASOFI
  3. 所属分类:assembly language

    • 发布日期:2017-04-04
    • 文件大小:2855
    • 提供者:Jing
  1. VirtualStorageManagementpageintheaddresstranslatio

    0下载:
  2. 1.页式存储管理中地址转换的方法。 2.页式虚拟存储的缺页中断处理方法。 -1. Page storage management method of address translation. 2. Pages of virtual memory page fault handling.
  3. 所属分类:OS Develop

    • 发布日期:2017-04-01
    • 文件大小:4921
    • 提供者:杨东英
  1. dingshi

    1下载:
  2. 两个定时实验,1.具体要求:采用定时器T0的溢出中断,单片机P1.0接发光二极管LED0。T0的每一次中断,在中断处理程序中都会对LED0的状态做一次改变(P1.0输出信号进行反转)。 2.具体要求:定时器T1每0.05秒中断一次,单片机P1口接8个发光二极管LED0~LED7,编写程序,使发光二极管有规律地循环点亮。例如:开机后,第一秒钟LED0、LED2亮,第二秒钟LED1、LED3亮,第三秒钟LED4、LED6亮,第四秒钟LED5、LED7亮,第五秒钟LED0、LED2、LED4、LE
  3. 所属分类:SCM

    • 发布日期:2014-04-21
    • 文件大小:78976
    • 提供者:scarly
  1. waibuzhongduan

    0下载:
  2. 采用外部中断INT0(用按键BUTTON模拟)中断,单片机P2口为输出口外接两位LED数码管。每申请一次中断(按下BUTTON),在中断处理程序中对数码管的显示数据作加1改变(实验中P2口外接的两位LED数码管采用7447硬件译码的方式以BCD码显示)。-The use of external interrupt INT0 (with simulated BUTTON button) interrupt, microcontroller P2 output port for an externa
  3. 所属分类:SCM

    • 发布日期:2017-04-01
    • 文件大小:49817
    • 提供者:scarly
« 1 2 3 4 5 6 7 89 10 11 12 13 ... 42 »
搜珍网 www.dssz.com