SSH – Fix PuTTY New Line Not Working Properly

puttyssh

I have PuTTY hooked up to a serial port and am reading an output of an AVR.

I send print command like this:

printf("OCR1A: %d \n", OCR1A);

And PuTTY does go to the next line but does not reset the column. Shown hereenter image description here

How can I have PuTTY start the newline column at zero instead 1 + current cursor position?

Best Answer

Enable the "Implicit CR in every LF" option.

Related Question