代码搜索:触发中断
找到约 10,000 项符合「触发中断」的源代码
代码结果 10,000
www.eeworm.com/read/26458/959799
hex 中断按键.hex
:0C0000000C942F000C94C8000C94D2004B
:14005400C0F9A4B0999282F88090CFE5D4E0CDBFDEBFC05134
:14006800D0400AEA08830024EAE6F0E010E0EF36F10711F023
:14007C000192FBCF0083E4E5F0E0A0E6B0E010E0EE35F107D6
:140
www.eeworm.com/read/26458/959800
mp 中断按键.mp
NOTE: AVR Code addresses are word addresses
All other addresses (including ones in FLASH) are byte addresses
Area Addr Size Decimal Bytes (Attributes)
----------
www.eeworm.com/read/26458/959801
lst 中断按键.lst
__text_start:
__start:
002F E5CF LDI R28,0x5F
0030 E0D4 LDI R29,4
0031 BFCD OUT 0x3D,R28
0032 BFDE OUT 0x3E,R29
0033 51C0 SUBI R28,0x10
0034 40D
www.eeworm.com/read/27197/980463
hex 按键中断.hex
:0B080C00759055D2AFD2A8D28880FEB4
:03000300020817D9
:040817006390FF32B9
:03000000020800F3
:0C080000787FE4F6D8FD75810702080C33
:00000001FF
www.eeworm.com/read/27197/980464
c 按键中断.c
//按键中断程序
#include
//主程序
void main()
{
P1=0x55; //P1口初始化为01010101B
EA=1; //CPU开总中断
EX0=1; //开外部中断0
IT0=1; //外部中断0为边沿触发方式
while(1)
{
}
}
www.eeworm.com/read/28525/1000934
串口通讯中断
www.eeworm.com/read/478101/1354251
c 中断查询.c
//-----------------------函数声明,变量定义--------------------------------------------------------
#include
#define KEY P1
sbit INT_0 =P3^2; // 将p3.2外部中断0
unsigned char COUNT_TI; /
www.eeworm.com/read/478101/1354262
c 中断查询.c
//-----------------------函数声明,变量定义--------------------------------------------------------
#include
sbit KEY_1 =P1^4; // 将p1.4定义为KEY_1
sbit KEY_2 =P1^5; // 将p1.5定义为KEY_2
sbit KE
www.eeworm.com/read/452881/1647626
c 中断查询.c
//-----------------------函数声明,变量定义--------------------------------------------------------
#include
#define KEY P1
sbit INT_0 =P3^2; // 将p3.2外部中断0
unsigned char COUNT_TI; /
www.eeworm.com/read/452881/1647637
c 中断查询.c
//-----------------------函数声明,变量定义--------------------------------------------------------
#include
sbit KEY_1 =P1^4; // 将p1.4定义为KEY_1
sbit KEY_2 =P1^5; // 将p1.5定义为KEY_2
sbit KE