老师好,我刚学stm32系列单片机,编写了一个USART的输入函数 ,发现 if else 在编译时正确 ,烧到板子里后 if else 无法实现正确条件判断。 代码如下:void USART1_IRQHandler(void)
{
u8 ch;
u8 key = 1;
if( USART_GetITStatus(USART1, USART_IT_RXNE) != RESET)
{
ch = USART_ReceiveData( USART1);
if( key==1 )
{
ByteData[0] = ch;
printf("\n\r 0x%02X \n\r",ByteData[0]);
key =2;
printf("\n\r %d \n\r",key);
}
else
{
ByteAddr = ch;
printf("\n\r 0x%02X \n\r",ByteAddr);
key =1;
printf("\n\r %d \n\r",key);
}
USART_ClearITPendingBit(USART1, USART_IT_RXNE);
}
} |