How to receive UART fixed length datas in sequence
Posted on January 24, 2017 at 15:27Hi allI'd like to use UART to receive soe fixed length datas, ex.'1234567890'.uint8_t buff[10]; hal_uart_receive_it(&huart, buff, 10); or hal_uart_receive_dma(&huart, buff, 10);How should I do and then make sure th...