Missing escape character on CR of CR-LF expansion.

This commit is contained in:
Gregory Nutt 2016-12-16 10:49:42 -06:00
parent 935e49f5bb
commit 6337fadd8c
2 changed files with 7 additions and 7 deletions

View File

@ -1268,7 +1268,7 @@ int up_putc(int ch)
/* Add CR */
while(!esp32_txready(&CONSOLE_DEV));
esp32_send(&CONSOLE_DEV, 'r');
esp32_send(&CONSOLE_DEV, '\r');
}
while(!esp32_txready(&CONSOLE_DEV));