Solved
How to make a new line in Cool Term
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
......
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
......
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");
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.