Solved
DOUBT:UART SERIAL RECEIVE
I'm trying to Receive a message "hello" from serial monitor and viewing it on Live expression,but message is not coming as word. It is coming as single letter- H E L L O.
char msg[20]="hello\r";
HAL_UART_Receive(&huart2,msg,sizeof(msg),1000);
i am using this code.

