Hello,
I’m using a PIC MCU in a project and consider switching to a more powerful STM32F20X MCU.
It seems the peripherals are more than sufficient for what I need, BUT …
I need an UART RX channel with reserved polarity. It is easy with the PIC as there is a bit to set for reversed polarity, but I can’t find if it’s possible with the STM32 (seems not, in fact).
So here are my 2 questions :
1 - Do I miss something, is it possible to reverse the UART RX polarity in hardware ?
2 - If it’s not possible, what solutions do I have ?
I thought about using an input pin, connect it to an interrupt on level change, and set an output pin with reversed polarity, that’s connected to UART RX.
Spending 2 IO pins for this should not that difficult (I will use 64 pin STM32), but this solution seems really ugly to me.
Regards,
Thomas.