关于定时中断的,求大神看看
我想输出一个周期为8ms的方波(用中断做),下面的程序有问题,但我不太清楚定时中断的运行求大神详解
lude<reg51.h>
void key() interrupt 3
{
P1=1;
TH1=(65536-4000)/256;
TL1=(65536-4000)%256;
P1=0;
}
void main()
{
TMOD=0x10;
IE=0x88;
TR1=1;
while(1)
{ TH1=(65536-4000)/256;
TL1=(65536-4000)%256;
while(!TF1);
TF1=0;
}
}