瀏覽代碼

[Finsh] fix the '\r' issue in linux telnet.

Bernard Xiong 9 年之前
父節點
當前提交
c2b5cd1e85
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      components/finsh/shell.c

+ 1 - 1
components/finsh/shell.c

@@ -425,7 +425,7 @@ void finsh_thread_entry(void *parameter)
 
                 if (rt_device_read(shell->device, 0, &next, 1) == 1)
                 {
-                    if (next == '\0') ch = 'r'; /* linux telnet will issue '\0' */
+                    if (next == '\0') ch = '\r'; /* linux telnet will issue '\0' */
                     else ch = next;
                 }
                 else ch = '\r';