代码搜索:中断驱动
找到约 10,000 项符合「中断驱动」的源代码
代码结果 10,000
www.eeworm.com/read/296288/8112683
c main.c
#include
#include//包含128X64驱动程序
#include //包含图片和汉字库
sbit Key_Data =P2^1;//定义Keyboard数据端口引脚
sbit Key_CLK=P3^2; //中断端口,时钟线
static unsigned char KeyV=0X00; //键值
stat
www.eeworm.com/read/143233/12888027
c drv_serial.c
/*********************************************************
用于UART0的串口通讯
发送,用队列方式,接受阻赛接收
应用中驱动可以一直处于打开状态
更新日志:
2004-11-16:
在recvbuff的基础上增加queue
设备加载后便一直在接收数据,在中断程序中将数据复制到queue.
www.eeworm.com/read/394238/8240978
txt sd.c.txt
any problems, send mails to lysindybear@sina.com.cn
相关文件
/drivers/scsi/scsi.c
/drivers/scsi/scsi.h
/drivers/scsi/scsi_lib.c
这个程序文件主要提供scsi硬盘的驱动程序模板
这个是很重要的一个函数,也就是中断处理含数,当一个scsi命令
www.eeworm.com/read/368761/9678973
txt testportb.txt
//PORTB电平变化中断测试程序
//创建人:袁伟东
//创建日期:2008.9.18
//发送CAN数据驱动机械手
//头文件
#include "pic18.h"
#include "pic18fxx8.h"
//声明脉冲输出口位地址的计算表达式
#define PORTBIT(add,bit) ((unsigned)(&add)*8+(bit))
//脉冲位定
www.eeworm.com/read/368761/9679007
c testportb.c
//PORTB电平变化中断测试程序
//创建人:袁伟东
//创建日期:2008.9.18
//发送CAN数据驱动机械手
//头文件
#include "pic18.h"
#include "pic18fxx8.h"
//声明脉冲输出口位地址的计算表达式
#define PORTBIT(add,bit) ((unsigned)(&add)*8+(bit))
//脉冲位定
www.eeworm.com/read/390268/8473251
c com.c
#include
#include
#include
#define BUFFLEN 1024 //缓冲区大小
unsigned int COMIR=0x0c; //COM1产生的硬件中断号为IR4,对应的中断向量为0ch,附:COM2产生的硬件中断号为IR3,对应的中断向量为0bh
unsigned int COM
www.eeworm.com/read/439625/7704709
asm 实验四(2).asm
;功能:验证中断优先级
ORG 0000H
LJMP MAIN
ORG 0003H ;外中断INT0入口地址
LJMP INT0
ORG 0013H ;外中断INT1入口地址
LJMP INT1
ORG 0050H
PROC MAIN
MAIN:
MOV SP, #5FH ;初始化堆栈指针SP
;初始化外中断INT0
S
www.eeworm.com/read/403611/11514000
asm wint67.asm
;参考程序 A.汇编程序: WINT67.ASM
$include (c8051f020.inc)
ORG 0
AJMP main
ORG 93H ; 外部中断INT6的中断向量是0093H,.
AJMP INT6_ISR
ORG 9BH ;外部中断INT7的中断向量是009BH,.
AJMP INT7_ISR
ORG 0100
www.eeworm.com/read/338771/12284423
asm wint67.asm
;参考程序 A.汇编程序: WINT67.ASM
$include (c8051f020.inc)
ORG 0
AJMP main
ORG 93H ; 外部中断INT6的中断向量是0093H,.
AJMP INT6_ISR
ORG 9BH ;外部中断INT7的中断向量是009BH,.
AJMP INT7_ISR
ORG 0100
www.eeworm.com/read/225781/14515853
asm wint67.asm
;参考程序 A.汇编程序: WINT67.ASM
$include (c8051f020.inc)
ORG 0
AJMP main
ORG 93H ; 外部中断INT6的中断向量是0093H,.
AJMP INT6_ISR
ORG 9BH ;外部中断INT7的中断向量是009BH,.
AJMP INT7_ISR
ORG 0100