cancel
Showing results for 
Search instead for 
Did you mean: 

How to make a new line in Cool Term

FLamb.2
Associate II

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

......

1 ACCEPTED SOLUTION

Accepted Solutions

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");

View solution in original post

1 REPLY 1

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");