4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-30 05:10:26 +08:00

Fix the echo issue in the shell.

This commit is contained in:
bernard 2015-03-20 12:44:58 +08:00
parent 924264b277
commit 5b1270455d

View File

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