代码搜索:触发中断

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

代码结果 10,000
www.eeworm.com/read/348075/11613737

rc 6.5多中断.rc

# Begin Project # Begin SubItem "6.5多中断 Resources" # End SubItem # End Project
www.eeworm.com/read/259816/11763392

txt 中断服务程序.txt

Interrupt Service Routine (ISR) .title “Interrupt Service Routine” .mmregs int1: CONTEXT_STORE ; push the contents of accumulators and registers on stack STM #K_INT0,IMR ; Unmask only INT0~ R
www.eeworm.com/read/342086/12041999

txt avr中断嵌套.txt

AVR中断嵌套 昨天写了个AVR的红外的遥控的闹钟程序,开发板要个综合程序.就随便写了个. 主程序开了两个中断,一个输入捕获中断,供红外使用.另外开了个定时中断,为系统其他地方使用,如蜂鸣器,键盘扫描,软件定时器等使用. 捕获中断接收到数据就压入一个队列中,然后在10ms的系统中断函数中处理队列的数据.发现接收很不稳定,有时行,有时不行. ...
www.eeworm.com/read/340729/12138026

c 定时中断.c

/******************************************************************************* * 标题: 启东微芯LJD-SY-5100单片机开发系统演示程序 * 文件: 定时中断.C
www.eeworm.com/read/338454/12306604

c 定时中断.c

/******************************************************************************* * 标题: 启东微芯LJD-SY-5100单片机开发系统演示程序 * 文件: 定时中断.C
www.eeworm.com/read/129383/14248267

asm 中断练习二.asm

ORG 0 AJMP STAR ORG 3 STA1:SETB C ASP:MOV P0,#0FFH MOV A,P0 MOV R0,#01H LOOP:RRC A JNC LED INC R0 CJNE R0,#9H,LOOP SJMP STA1 LED:MOV A,R0 MOVC A,@A+DPTR MOV P2,A RETI ST
www.eeworm.com/read/129383/14248310

bin 中断习题一.bin

www.eeworm.com/read/129383/14248313

bin 中断练习二.bin

www.eeworm.com/read/129383/14248325

asm 中断习题一.asm

ORG 0 AJMP STAR ORG 3 INC A MOV B,#02H DIV AB MOV A,B JZ AA MOV P2,#0 RETI AA: MOV A,#0H MOV P2,#76H PUSH A MOV A,P1 CLR C RLC A MOV P1,A POP A RETI STAR: MOV P1,#0FFH