diff --git a/components/finsh/shell.c b/components/finsh/shell.c index 125dcec198703284870605042843eff05eea88d7..f28e235b3fed8ffb4c1e5bbc6c9577df817bd9e4 100644 --- a/components/finsh/shell.c +++ b/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;