代码搜索:中断处理

找到约 10,000 项符合「中断处理」的源代码

代码结果 10,000
www.eeworm.com/read/435840/7783172

htm 143612_906089.htm

[技术问答 PIC 单片机] PIC24F之EEPROM读写中断事件处理函数要点及说明==www.ic37.com
www.eeworm.com/read/299730/7836584

h protect.h

#include "../../include/toyos.h" //根据段名取绝对地址 PUBLIC t_32 Seg2Phys(t_16 seg); PUBLIC void Delay(int Time); //设置外中断处理程序 PUBLIC void SetDescriptor(DESCRIPTOR *pDesc,t_32 Base,t_32 Limit,t_16 Attribute)
www.eeworm.com/read/198811/7909632

c main.c

#include"c6711_init.h" interrupt void c_int10()//中断函数 { int sample_data; sample_data=mcbsp0_read(); ////处理函数//// mcbsp0_write(sample_data & 0xfffe);//屏蔽AD535作为控制的LSB,输出高15位 return
www.eeworm.com/read/302618/13831018

html ch10.html

第 10 章 中断处理-Linux设备驱动第三版(中文版)-开发频道-华星在线
www.eeworm.com/read/405393/11463797

html ch10.html

第 10 章 中断处理-Linux设备驱动第三版(中文版)-开发频道-华星在线
www.eeworm.com/read/338615/12291968

c main.c

#include "c6711_init.h" interrupt void c_int11()//中断函数 { int sample_data; sample_data=mcbsp0_read(); ////处理函数//// mcbsp0_write(sample_data & 0xfffe);//屏蔽AD535作为控制的LSB,输出高15位 r
www.eeworm.com/read/328457/3443477

c timer1.c

/* * 文件名: Timer1.C * 功能: 定时器T1中断处理程序 * 作者: Light Rain * 时间: 2006-06-08 * * 描述: * */ #include "Timer1.H" #include "Global.H" extern void Timer1_Handler(void); /* 定时时间:10毫秒 */
www.eeworm.com/read/169909/9833249

c interrupts.c

#include "talkthrough.h" int CH_sel;//通道标志 /****************设置中断程序*********************/ void InitInterrupts(void) { sysreg_write(sysreg_IMASK, 0x0001); //初始化过程屏蔽所有中断(除COM定时器中断)
www.eeworm.com/read/167828/9951350

asm vector.asm

.mmregs .global CodeStart .global TINT0_ISR .align 0x80 .sect ".vector" RESET: BD CodeStart ;复位中断 NOP NOP NMI: RETE ;非屏蔽中断 NOP NOP NOP ;以下代码为软件中断预留空间
www.eeworm.com/read/273890/10895593

c isrs.c

#include "bf5xx.h" /**************************************************************************** * 名称 :Init_Flags * 功能 :当PF3为低电平时就触发中断,进入中断服务程序 接收中断读取触摸屏坐标 * 入口参数 :无 * 出口参数 :无 ******