How to feed New Line ('\n') from my Nucleo-F44rZE board to PC terminal?
Hello All,
I am using Nucleo-F44rZE board. From my nucleo board, I want to send a new line char to my terminal which actually has to fee a line in terminal when it recieves it.
I have the following code, which actually prints 0A in my terminal instead of feeding a new line.
uint8_t nl = 0x0A; // ascii value for new line feed
HAL_UART_Transmit(&huart5, &nl, 1, 100); // Go to the next line
Please help to understand this behavior and find the solution for this.