cancel
Showing results for 
Search instead for 
Did you mean: 

When we are sending some data like "hi" in periodic interval of time 100ms STM32f411E discovery getting PC data over uart. But when we send data with fast rate (100ms) then we are facing issue In reception of complete data.

PBira.1
Associate II

Below api we are using to get data from uart ( HAL_UART_Receive_IT ).

1 REPLY 1

Make sure one transaction completes before trying to stuff another, consider using a buffer, accumulating data in that, and using the callback to output next available block of data.

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