#include<reg52.h>//51单片机头文件
#define uchar unsigned char//宏定义
#define uint unsigned int
sbit ceshu=P3^2;
uchar code smg_du[]={0x3f,0x06,0x5b,0x4f,0x66,0x6d,0x7d,0x07,0x7f,0x6f,0x77,0x7c,0x39,0x5e,0x79,0x71};//数码管段码
uchar code smg_we[]={0x00,0x04,0x08,0x0c,0x10,0x14,0x18,0x1f};//数码管位码
uchar disp[8];//存储拆开的数
uint cnt,cnt1,zs,k;//cnt溢出的数
uchar flag;
/////////
void delay_50us(uint t)//50us延时函数
{
uchar j;
for(;t>0;t--)
for(j=19;j>0;j--);
}
/////////////
void dispose()//
{
disp[0]=zs/1000;
disp[1]=(zs%1000)/100;
disp[2]=(zs/100)/10;
disp[3]=zs%10;
}
/////////////
void display(void)
{
uchar i;
for(i=0;i<8;i++)
{
P0=smg_du[disp[i]];
P2=smg_we[i];
delay_50us(2);
}
}
////////
void initial()//初始化
{
TMOD=0x51; //定时器T1工作与计数器模式1,定时器T0工作于计时模式1
TH0=(65536-50000)/256;
TL0=(65536-50000)%256;
EA=1;
ET0=1;
TR0=1;
}
///////
void main()
{
initial();
cnt=0;
while(1)
{
TR1=1;
TH1=0;
TL1=0;
flag=0; // 时间还未满1分钟
while(flag==0); // 时间未满等待
zs=(TH1*256+TL1)*60/20; // 计算速度,每周产生20个脉冲
dispose();
//display();
}
}
//////
void time0() interrupt 1//定时器T0中断服务程序
{
uchar i;
for(i=0;i<8;i++)
{
P0=smg_du[disp[i]];
P2=smg_we[i];
delay_50us(2);
}
cnt++;
if(cnt==20)
{
flag=1;
cnt=0;
}
TH0=(65536-50000)/256;
TL0=(65536-50000)%256;
}
|