Skip to content
Snippets Groups Projects
Commit 7b5bf5f6 authored by Damien George's avatar Damien George
Browse files

stm32/uart: Handle correctly the char overrun case of RXNE=0 and ORE=1.

Fixes issue #3375.
parent 2848a613
No related branches found
No related tags found
No related merge requests found
......@@ -745,6 +745,16 @@ void uart_irq_handler(mp_uint_t uart_id) {
}
}
}
// If RXNE is clear but ORE set then clear the ORE flag (it's tied to RXNE IRQ)
#if defined(STM32F4)
else if (self->uartx->SR & USART_SR_ORE) {
(void)self->uartx->DR;
}
#else
else if (self->uartx->ISR & USART_ISR_ORE) {
self->uartx->ICR = USART_ICR_ORECF;
}
#endif
// Set user IRQ flags
self->mp_irq_flags = 0;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment