Question
HAL_UART_Transmit() and HAL_UART_Receive() API
I am using Nucleo board and Tera term for serial monitor
I want to do simple addition program
I want to take two values from serial monitor by typing (number + Enter ) and print back its addition
Expect output on Serial monitor:
enter value A : 5
enter value B : 6
Sum is : 11
Give me a code example
