提交 e86bd682 编写于 作者: B bernard.xiong@gmail.com

fixed the mismatch of device definitions in rtdef.h and finsh shell; add line...

fixed the mismatch of device definitions in rtdef.h and finsh shell; add line comment in finsh shell. 

git-svn-id: https://rt-thread.googlecode.com/svn/trunk@2136 bbd45198-f89e-11dd-88c7-29a3b14d5316
上级 2c82d494
......@@ -356,7 +356,8 @@ static long _list_device(struct rt_list_node *list)
"CAN Device",
"RTC",
"Sound Device",
"Graphic Device",
"Graphic Device",
"I2C Bus",
"I2C Device",
"USB Slave Device",
"USB Host Bus",
......@@ -401,12 +402,10 @@ int list_module(void)
for (node = list->next; node != list; node = node->next)
{
module = (struct rt_module*)(rt_list_entry(node, struct rt_object, list));
rt_kprintf("%-16s ", module->parent.name);
rt_kprintf("%-04d \n", module->nref);
rt_kprintf("%-16.*s %-04d\n", RT_NAME_MAX, module->parent.name, module->nref);
}
return 0;
}
FINSH_FUNCTION_EXPORT(list_module, list module in system)
......
......@@ -207,7 +207,17 @@ static void token_run(struct finsh_token* self)
break;
case '/':
self->current_token = finsh_token_type_div;
ch = token_next_char(self);
if (ch == '/')
{
/* line comments, set to end of file */
self->current_token = finsh_token_type_eof;
}
else
{
token_prev_char(self);
self->current_token = finsh_token_type_div;
}
break;
case '<':
......
......@@ -36,6 +36,7 @@ enum finsh_token_type
finsh_token_type_bitwise, /* ~ */
finsh_token_type_shl, /* << */
finsh_token_type_shr, /* >> */
finsh_token_type_comments, /* // */
/*-- data type --*/
finsh_token_type_void, /* void */
finsh_token_type_char, /* char */
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册