这是我的一个定时器中断函数,每一秒中断一次(这个实现了,因为LED实现了1s闪一次),但是为什么下面的switch语句执行不了,我调试了一下,GPIOA的1,2,3,4位就不曾改变过状态。
void
tiM3_IRQHandler(void) //定时器中断
{
if(TIM_GetITStatus(TIM3,TIM_IT_Update)==SET) //溢出中断
{
if(t==7199) //7199
t=0;
else
t++;
if(t%2==1)
GPIO_ResetBits(GPIOG,GPIO_Pin_13); //LED亮
else
GPIO_SetBits(GPIOG,GPIO_Pin_13); //LED灭
}
TIM_ClearITPendingBit(TIM3,TIM_IT_Update); //清除中断标志位
switch(t) //传感器需预热5分钟左右
{
case 10: GPIO_SetBits(GPIOA,GPIO_Pin_1);break;
case 11: GPIO_SetBits(GPIOA,GPIO_Pin_4);break;
case 15: GPIO_SetBits(GPIOA,GPIO_Pin_2);break;
case 16: GPIO_ResetBits(GPIOA,GPIO_Pin_1);break;
case 20: GPIO_SetBits(GPIOA,GPIO_Pin_1);break;
case 21: GPIO_ResetBits(GPIOA,GPIO_Pin_2);break;
case 30: GPIO_SetBits(GPIOA,GPIO_Pin_3);break;
case 31: GPIO_ResetBits(GPIOA,GPIO_Pin_1);break;
case 40: GPIO_SetBits(GPIOA,GPIO_Pin_1);break;
case 41: GPIO_ResetBits(GPIOA,GPIO_Pin_3);break;
case 50: GPIO_ResetBits(GPIOA,GPIO_Pin_4);break;
case 51: GPIO_ResetBits(GPIOA,GPIO_Pin_1);break;
default: break;
}
}
一周热门 更多>