diff --git a/components/finsh/shell.c b/components/finsh/shell.c index 393d68713ccd72c99e7357602f6fcc846337dfa2..ae099e7e7c3e9ce5915fd33d8577499e242627c3 100644 --- a/components/finsh/shell.c +++ b/components/finsh/shell.c @@ -530,6 +530,12 @@ void finsh_thread_entry(void* parameter) ch = 0; shell->line_position ++; shell->line_curpos++; + if (shell->line_position >= 80) + { + /* clear command line */ + shell->line_position = 0; + shell->line_curpos = 0; + } } /* end of device read */ } }