UART transmitter transmits wrong ascii value to my pc.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2023-09-22 10:18 PM
UART transmitter transmits wrong ascii value to my pc.
what is the problem in my code..??
I put a charecter in Data Register, but serial terminal show another ascii code.
My IDE is KeiluVision5. the code is in below.....
Solved! Go to Solution.
- Labels:
-
Documentation
-
STM32F4 Series
-
UART-USART
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2023-09-22 10:39 PM
The most common reasons are a baudrate mismatch between transmitter and receiver or some different code page/char translation done by "intelligent" terminal progs on the receiver side. Check the signals on the wire using a scope or a cheap logic analyzer.
hth
KnarfB
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2023-09-22 10:39 PM
The most common reasons are a baudrate mismatch between transmitter and receiver or some different code page/char translation done by "intelligent" terminal progs on the receiver side. Check the signals on the wire using a scope or a cheap logic analyzer.
hth
KnarfB
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2024-03-19 09:28 AM
Thank you for your suggestion.