Receving a string from terminal via UART
Hey, I would like to a string from terminal via UART in order to complete a challange given by Digi-Key YouTube channel in FreeRTOS tutorial playlist. Anyway, I want to take the whole string given by user in terminal, but I couldn't so far. I tried
HAL_UART_Receive(&huart2, (uint8_t*)rcvd_msg, MSG_LEN, 100);
however it didn't work. It can take only the first letter and nothing else. btw, I don't want to use interrupts in this case, so it is better to suggest something without interrupt.
Thanks for your answers.
