26.单片机中利用定时器中断,在主流程while(1){}中设置每隔精确时间计量

时间:2022-01-07 15:21:50
void Timer0_ISR( ) interrupt
{
CountMilliseconds++;//只负责自加,加到最大又重新从0开始
}
u16 setDelay(u16 t)
{
return(CountMilliseconds + t - );
} u8 checkDelay (u16 t)//返回非零表示计时结束
{
return(((t - CountMilliseconds) & 0x8000) >> );//当(t - CountMilliseconds)为正则&之后为0,当变为负数后因为是无符号整数,产生无穷大,那么非零
}

使用1:(比较常规的用法)

void delay_ms(u16 w)//延时多少mS
{
u16 temp;
temp = setDelay(w);
while (!checkDelay(temp));
}

使用2:

u16 dely_500mS = setDelay();

while()

{
  ...   if(checkDelay(dely_500mS )){}//表示计时时间到达了   ...
}