Hello,
I'm currently working on a project where I use the UART in async mode.
I'm giving a timeout parameter to the uart_rx_enable()
function in order to treat the UART_RX_RDY
event as an End Of Frame event.
The problem is that when the buffer is full the UART_RX_RDY
event is also generated before switching to the next buffer without taking into account the timeout value.
Is there a way to know if the event UART_RX_RDY
has been generated specifically because of a timeout and not because of a buffer full/switch event ?
Regards