cancel
Showing results for 
Search instead for 
Did you mean: 

What is the best way to receive uart serial data at 115k Baud in a FreeRtos based app?

Julian Winpenny
Associate II
Posted on October 03, 2017 at 19:54

MCU: STM32F765

Using FreeRtos

10 REPLIES 10
Posted on November 06, 2017 at 23:44

The callback is called under interrupt context, it is best to queue the data, and relight the transfer there, and manage the data from the queue in a worker task. The queuing should not cause a context switch.

Tips, Buy me a coffee, or three.. PayPal Venmo
Up vote any posts that you find helpful, it shows what's working..