2021-01-23 05:13 PM
I am using Cool Term to print text to the USART.
How can I make a new line?
Now, it looks like this:
TextTextText.....
But I want it like this:
Text
Text
Text
......
Solved! Go to Solution.
2021-01-24 12:41 AM
Hello
Use CR LF after"Text" string
\n character is LF(line feed) and \r character is CR carriage return. (escape character)
eg: printf("Text\r\n");
2021-01-24 12:41 AM
Hello
Use CR LF after"Text" string
\n character is LF(line feed) and \r character is CR carriage return. (escape character)
eg: printf("Text\r\n");