Fixed incorrect enum value being used for GetITStatus on F4
This commit is contained in:
parent
628fdb8adc
commit
4e5f0e3c54
|
@ -289,7 +289,7 @@ void uartIrqHandler(uartPort_t *s)
|
|||
}
|
||||
}
|
||||
|
||||
if (USART_GetITStatus(s->USARTx, USART_FLAG_ORE) == SET)
|
||||
if (USART_GetITStatus(s->USARTx, USART_IT_ORE) == SET)
|
||||
{
|
||||
USART_ClearITPendingBit (s->USARTx, USART_IT_ORE);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue