UART PROBLEM
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
2017-05-29 6:26 AM
Posted on May 29, 2017 at 15:26
Hi,
In my project i want to use two uart in the same card (stm32F4xx), the first UART (UART6) is connected with PC and the seconde one (UART3) is connected with others cards.
It's possible to send via UART3 what i receive with UART6??
#uart #stm32
Labels:
- Labels:
-
UART-USART
This discussion is locked. Please start a new topic to ask your question.
1 REPLY 1
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
2017-05-29 7:38 AM
Posted on May 29, 2017 at 16:38
>>It's possible to send via UART3 what i receive with UART6??
Yes, you'd need to take the data received by one and send it out the other, if the baud rates are the same you might get away with just doing this in a loop, or via the IRQHandler. A more robust method would be to buffer the data to provide some elasticity.
Tips, Buy me a coffee, or three.. PayPal Venmo
Up vote any posts that you find helpful, it shows what's working..
Up vote any posts that you find helpful, it shows what's working..
