未验证 提交 46d09e04 编写于 作者: L LiuKang 提交者: GitHub

[update] remove extra code. (#5663)

上级 3df75f9e
......@@ -40,14 +40,6 @@
#define LIST_FIND_OBJ_NR 8
long hello(void)
{
rt_kprintf("Hello RT-Thread!\n");
return 0;
}
MSH_CMD_EXPORT(hello, say hello world);
static long clear(void)
{
rt_kprintf("\x1b[2J\x1b[H");
......@@ -886,28 +878,4 @@ long list_device(void)
MSH_CMD_EXPORT(list_device, list device in system);
#endif
long list(void)
{
rt_kprintf("--Commands List:\n");
{
struct finsh_syscall *index;
for (index = _syscall_table_begin;
index < _syscall_table_end;
FINSH_NEXT_SYSCALL(index))
{
/* skip the internal command */
if (strncmp((char *)index->name, "__", 2) == 0) continue;
#if defined(FINSH_USING_DESCRIPTION) && defined(FINSH_USING_SYMTAB)
rt_kprintf("%-16s -- %s\n", index->name, index->desc);
#else
rt_kprintf("%s\n", index->name);
#endif
}
}
return 0;
}
MSH_CMD_EXPORT(list, list all commands in system)
#endif /* RT_USING_FINSH */
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册