2021-10-29 12:50 PM
2021-10-29 1:00 PM
You can use HAL_UARTEx_ReceiveToIdle which will return when the line becomes idle or the specified number of characters are received.
2021-10-29 9:08 PM
Or the 8 bit mcu way, interrupt from each incoming byte, when 0 or /n termination char is detected, flag the message for task to process it, and continue receiving in another income buffer.
2021-10-31 5:23 PM
2021-11-11 2:58 AM
Thanks for all you