How to properly temporarily disable UART reception ?
Hello,
we have UART based communication that cause crosstalk between RX and TX lines.
It can't be fixed, so I'd like to solve it in SW.
I'd like to temporarily disable/enable UART reception before/after sending on UART.
I'm already putting DMA into Pause/Resume, but I still get those crosstalk bytes (probably UART is still receiving into own buffer).
How to properly disable UART reception for some short time ?
I could do deinit_/init procedure, but maybe there is a shorter way...
thanks in advance.