【蓝桥杯单片机笔记4】中断系统与外部中断系统应用
内容来自小蜜蜂老师~
中断系统
外部中断0 INT0 、0(中断号)
定时计数器0 TF0、1
外部中断1 INT1、2
定时计数器1 TF1、3
串口中断 RI/TI、4
与中断相关的寄存器
中断系统结构
中断函数编写规则
1.相关配置初始化 2.中断功能执行函数
中断函数框架 void 函数名() interrupt 中断号 {
}
中断的优先级: 外部中断0 > 定时/计数器0 >外部中断1 > 定时/计数器1 >串口中断
题目要求:
直接在中断函数中延时
#include "reg52.h"
sbit L1 = P0^0;
sbit L8 = P0^7;
void Delay(unsigned int t)
{
while(t--);
}
void HC138(unsigned char n)
{
switch(n)
{
case 4: P2 = P2 |0x1f; P2 = 0x80; break;
case 5: P2 = P2 |0x1f; P
共有 0 条评论