电子产业一站式赋能平台

PCB联盟网

搜索
查看: 1988|回复: 0
收起左侧

单片机C语言实例-171-外部中断的使用

[复制链接]
发表于 2022-2-12 10:23:13 | 显示全部楼层 |阅读模式
单片机C语言实例-171-外部中断的使用

/********************************************************************
* 文件名  : 外部中断的使用.c
* 描述    :  外部中断,是单片机最基本也是最重要的功能。
                         外部中断0端口P3.2按键,数码管加一。
                         外部中断1端口P3.3按键,数码管减一。
* 创建人  : 东流,2009年4月9日
* 版本号  : 2.0
***********************************************************************/
#include<reg52.h>
#define uchar unsigned char
#define uint  unsigned int

sbit KEY1 = P3^2;
sbit KEY2 = P3^3;

uchar Count = 0;
uchar code table[10] = {0x3f,0x06,0x5b,0x4f,0x66,0x6d,0x7d,0x07,0x7f,0x6f};

/********************************************************************
* 名称 : Delay()
* 功能 : 延时,延时时间为 10ms * del
* 输入 : del
* 输出 : 无
***********************************************************************/
void Delay(uint del)
{
        uint i,j;
        for(i=0; i<del; i++)
        for(j=0; j<1827; j++)   
        ;
}

/********************************************************************
* 名称 : Outside_Init()
* 功能 : 外部中断0,1 的初始化
* 输入 : 无
* 输出 : 无
***********************************************************************/
void Outside_Init(void)
{
        EX0 = 1;  //开外部中断0
        IT0 = 1;  //负边沿触发

        EX1 = 1;  //开外部中断1
        IT1 = 1;  //负边沿触发

        EA = 1;          //开总中断
}

/********************************************************************
* 名称 : Outside_Int1()
* 功能 : 外部中断0 的中断处理
* 输入 : 无
* 输出 : 无
***********************************************************************/
void Outside_Int1(void) interrupt 0        using 1
{
        Delay(2);
        if(KEY1 == 0)
        {
                Count++;
        }
        Delay(30);       
}
/********************************************************************
* 名称 : Outside_Int2()
* 功能 : 外部中断1 的中断处理
* 输入 : 无
* 输出 : 无
***********************************************************************/
void Outside_Int2(void) interrupt 2        using 1
{
        Delay(2);
        if(KEY2 == 0)
        {
                Count--;
        }
        Delay(30);
}
/********************************************************************
* 名称 : Main()
* 功能 : 外部中断试验主程序
* 输入 : 无
* 输出 : 无
***********************************************************************/
void Main(void)
{
        Outside_Init();
        while(1)
        {
                P0 = table[Count % 10];
                Delay(2);
        }
}


更多详情参考附件文档
+08:00C140联盟网7222.png
游客,如果您要查看本帖隐藏内容请回复

回复

使用道具 举报

发表回复

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则


联系客服 关注微信 下载APP 返回顶部 返回列表