2024-01-24 07:40 PM
Version: 1.14.1
MCU package: STM32CubeF1 Firmware Package V1.8.0 / 26-June-2019
The GPIO Settings of the USART auto configuration are incorrect.
Solved! Go to Solution.
2024-01-24 07:53 PM
The decades-old STM32F1 series handles pin functions differently than other series. Since USART_RX is an input to the microcontroller, input mode is correct and appropriate here.
AF is used for outputs and bidirectional pins.
2024-01-24 07:53 PM
The decades-old STM32F1 series handles pin functions differently than other series. Since USART_RX is an input to the microcontroller, input mode is correct and appropriate here.
AF is used for outputs and bidirectional pins.
2024-01-24 08:02 PM
Thanks