void
tiM3_IRQHandler(void) //TIM3中断
{
u8 time;
IF (TIM_GetITStatus(TIM3, TIM_IT_Update) != RESET) //检查TIM3更新中断发生与否
{
LED1=!LED1;
TIM_ClearITPendingBit(TIM3, TIM_IT_Update ); //清除TIMx更新中断标志
}
time++;
if(time==8)
{
LED1=0;
// TIM_Cmd(TIM3, DISABLE);
time=0;
}
}
一周热门 更多>