书上说单片机定时计数器工作在计数模式时对外部脉冲计数 满了就溢出产生中断 可是我实际调试的时候不太对 请大家帮忙看一下程序
我的想法是T0工作在定时模式定时1ms T1工作在计数模式每1ms加1 一共计1000个数 正好是1秒 然后P0口和P2口的流水灯挨个亮
#include <reg52.h>
#include <intrins.h>
unsigned char shift=0xfe;
sbit TT1=P3^5;
void time0(void)interrupt 1
{
TT1=0;
_nop_();
_nop_();
TT1=1;
_nop_();
TL0=0xf0;
TH0=0xd8;
}
void time1(void)interrupt 3
{
shift<<=1;
shift|=0x01;
TL1=0xf0;
TH1=0xd8;
}
void main()
{
TT1=0;
P0=0xff;
P2=0xff;
TMOD=0x51;
TL0=0xf0;
TH0=0xd8;
TL1=0xf0;
TH1=0xd8;
ET0=1;
ET1=1;
EA=1;
TR0=1;
TR1=1;
while(1)
{
P0=shift;
P2=shift;
if(shift==0xff)
{
shift=0xfe;
}
}
} |