您的位置 首页 FPGA

51单片机外部中止程序

/*以下是能在keilC中变异的源码,直接粘贴过去就行,外部中断0(INT0)和外部中断1都有(INT1)*//*程序很简单,但是对新手来说还是很实用的…

/*以下是能在keilC 中变异的源码,直接张贴曩昔就行,外部中止0(INT0)和外部中止1都有(INT1)*/

/*程序很简单,可是对新手来说仍是很有用的*/

/*******************************************************************/
/* */
/* 单片机开发体系演示程序 – INT0 INT1 中止计数 */
/* */
/* 6位数码管显现 */
/* */
/* */
/*******************************************************************/

#include < reg51.h >
#include

#define uchar unsigned char
#define uint unsigned int

unsigned char code LEDData[ ] = {0xC0,0xF9,0xA4,0xB0,0x99,0x92,
0x82,0xF8,0x80,0x90,0xff};

unsigned char data display[8] = {0x00,0x00,0x00,0xff,0xff,0x00,0x00,0x00};

unsigned char code scan_bit[8] = {0x7f,0xbf,0xdf,0xef,0xf7,0xfb,0xfd,0xfe};

unsigned char count0,count1,temp=0 ;

/********************************************************
* *
* 延时函数 *
* *
********************************************************/
void delay(uint ms)
// 延时子程序
{
uchar k;
while(ms–)
{
for(k = 0; k < 100; k++);
}
}

/********************************************************
* *
* 数据处理与显现函数 *
* *
********************************************************/
void disp_count()
{
char n;

temp=count0;

display[2]=temp/100; //数据处理
temp=temp%100;
display[1]=temp/10;
display[0]=temp%10;

if(display[2]==0) //高位为0,不显现
{
display[2]=0x0a;
if(display[1]==0)
display[1]=0x0a;
}

temp=count1;

display[7]=temp/100; //数据处理
temp=temp%100;
display[6]=temp/10;
display[5]=temp%10;

if(display[7]==0) //高位为0,不显现
{
display[7]=0x0a;
if(display[6]==0)
display[6]=0x0a;
}

for(n=0;n<8;n++)
{
P0 =LEDData[display[n]] ; //显现段码
P2 =scan_bit[n]; //输出位码
delay(1);
P2 = 0xff; //封闭显现
}
}

/********************************************************
* *
* 主程序 *
* *
********************************************************/
void main(void)
{
P0=0xff;
P1=0xff;
P2=0xff;

IT0=0; //低电平触发
// IT0=1; //下降沿触发
IT1=0; //低电平触发
// IT1=1; //下降沿触发
PX0=1;
EA=1;
EX1=1;
EX0=1;

while(1)
{
disp_count();
}
}

/********************************************************
* *
* INT0中止函数 *
* *
********************************************************/
void counter0(void) interrupt 0
{
uchar x;
EX0=0;
count0++;

for(x=0;x<10;x++)
{
disp_count();
}
EX0=1;
}

/********************************************************
* *
* INT1中止函数 *
* *
********************************************************/
void counter1(void) interrupt 2
{
uchar x;
EX1=0;
count1++;

for(x=0;x<10;x++)
{
disp_count();
}
EX1=1;
}

/********************************************************/

声明:本文内容来自网络转载或用户投稿,文章版权归原作者和原出处所有。文中观点,不代表本站立场。若有侵权请联系本站删除(kf@86ic.com)https://www.86ic.net/fangan/fpga/266800.html

为您推荐

联系我们

联系我们

在线咨询: QQ交谈

邮箱: kf@86ic.com

关注微信
微信扫一扫关注我们

微信扫一扫关注我们

返回顶部