This commit is contained in:
Bernard.Xiong 2015-03-22 08:57:02 +08:00
commit e2cfb1f796
2 changed files with 2 additions and 2 deletions

View File

@ -623,7 +623,6 @@ int list_mod_detail(const char *name)
return 0;
}
FINSH_FUNCTION_EXPORT(list_mod_detail, list module objects in system)
MSH_CMD_EXPORT(list_mod_detail, list module objects in system)
#endif
long list(void)

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;