USART configuration problem
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2024-01-24 7: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.
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2024-01-24 7: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.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2024-01-24 7: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.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2024-01-24 8:02 PM
Thanks
