We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e5edc5b commit c2b5cd1Copy full SHA for c2b5cd1
components/finsh/shell.c
@@ -425,7 +425,7 @@ void finsh_thread_entry(void *parameter)
425
426
if (rt_device_read(shell->device, 0, &next, 1) == 1)
427
{
428
- if (next == '\0') ch = 'r'; /* linux telnet will issue '\0' */
+ if (next == '\0') ch = '\r'; /* linux telnet will issue '\0' */
429
else ch = next;
430
}
431
else ch = '\r';
0 commit comments