UART Communication Using UART to USB cable.
I'm trying to get a simple UART hello world program to work. It just transmits a buffer once per second. I've enabled UART2, enabled the interrupt, and configured the baud rate, parity, and word length. But when I open minicom I don't see anything. I know the loop is running because I'm toggling the LED on every transmit. I've also tried implementing the receive callback and sending messages to the stm32 with a Python script (this was actually the first thing I tried, but I decided to simplify things to troubleshoot.)
I'm using this cable
I've got the white wire (tx) connected to USART2_TX (PA2) and the green wire (rx) connected to USART_RX (PA3) and the black write (gnd) connected to GND.
Does anybody have any tips on troubleshooting this?
