2021-10-29 12:50 PM
2021-10-29 01: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 09: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 05:23 PM
2021-11-11 02:58 AM
Thanks for all you