1
0
Эх сурвалжийг харах

[finsh] Fix the echo mode issue in finsh.

Bernard Xiong 10 жил өмнө
parent
commit
7da82cbf31

+ 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;