Browse Source

[finsh] Fix the echo mode issue.

Bernard Xiong 10 năm trước cách đây
mục cha
commit
570e2ffbe7
1 tập tin đã thay đổi với 2 bổ sung1 xóa
  1. 2 1
      components/finsh/shell.c

+ 2 - 1
components/finsh/shell.c

@@ -526,7 +526,8 @@ void finsh_thread_entry(void* parameter)
             else
             {
                 shell->line[shell->line_position] = ch;
-                rt_kprintf("%c", ch);
+                if (shell->echo_mode)
+                    rt_kprintf("%c", ch);
             }
 
             ch = 0;