代码搜索:中断处理

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

代码结果 10,000
www.eeworm.com/read/117293/14931937

c serial1.c

//串口中断服务程序,仅需做简单调用即可完成串口输入输出的处理 //出入均设有缓冲区,大小可任意设置。 //************************************************************************* #include "TestSerial.h" #define BAUDRATE1 115200 // 用户定义的UART1 波特
www.eeworm.com/read/117293/14931948

c serial.c

//串口中断服务程序,仅需做简单调用即可完成串口输入输出的处理 //出入均设有缓冲区,大小可任意设置。 //************************************************************************* #include "TestSerial.h" #define BAUDRATE0 115200 // 用户定义的UART0
www.eeworm.com/read/206977/15284441

txt debugcom.txt

51单片机串口调试程序一例 /*定义为中断方式串口处理*/ #define INTERSENDSTR /*不为8032系列芯片 */ //#define CHIP_8032 #include #include #include #include "err.h" #ifdef INTERSEND
www.eeworm.com/read/11825/234865

s rs_io.s

/* * linux/kernel/rs_io.s * * (C) 1991 Linus Torvalds */ /* * rs_io.s * * This module implements the rs232 io interrupts. */ /* * 该程序模块实现rs232 输入输出中断处理程序。 */ .text .globl _rs1_interrupt,_rs2_interru
www.eeworm.com/read/17110/717218

c ex1.c

#include //头文件 int ch; void SISR(void) interrupt 4 //串行中断服务例程 { RI=0; //清零 ch=SBUF; //读取接收缓冲器 if(RB8== ParityCheck(ch)) //判断奇偶校验位 { //用户处理语句,省略 } else
www.eeworm.com/read/17110/717242

c ex1.c

#include //头文件 int ch; void SISR(void) interrupt 4 //串行中断服务例程 { RI=0; //清零 ch=SBUF; //读取接收缓冲器 if(RB8== ParityCheck(ch)) //判断奇偶校验位 { //用户处理语句,省略 } else
www.eeworm.com/read/17254/728543

h irq.h

#ifndef _INTERRUPT_H_ #define _INTERRUPT_H_ #include #include #include //中断服务处理函数个数 #define INT_TYPE_NUM 66 #define INT_MASK_ENABLE 0 #define INT_MASK_D
www.eeworm.com/read/30619/1017011

c serial1.c

//串口中断服务程序,仅需做简单调用即可完成串口输入输出的处理 //出入均设有缓冲区,大小可任意设置。 //************************************************************************* #include "TestSerial.h" #define BAUDRATE1 115200 // 用户定义的UART1 波特
www.eeworm.com/read/30619/1017015

c serial.c

//串口中断服务程序,仅需做简单调用即可完成串口输入输出的处理 //出入均设有缓冲区,大小可任意设置。 //************************************************************************* #include "TestSerial.h" #define BAUDRATE0 115200 // 用户定义的UART0
www.eeworm.com/read/396496/2414545

s rs_io.s

/* * linux/kernel/rs_io.s * * (C) 1991 Linus Torvalds */ /* * rs_io.s * * This module implements the rs232 io interrupts. */ /* * 该程序模块实现rs232 输入输出中断处理程序。 */ .text .globl _rs1_interrupt,_rs2_interru