Add more device type.
git-svn-id: https://rt-thread.googlecode.com/svn/trunk@1838 bbd45198-f89e-11dd-88c7-29a3b14d5316
This commit is contained in:
parent
db82f30dc2
commit
44b3b3ad87
|
@ -357,6 +357,9 @@ static long _list_device(struct rt_list_node *list)
|
|||
"I2C Device",
|
||||
"USB Slave Device",
|
||||
"USB Host Bus",
|
||||
"SPI Bus",
|
||||
"SPI Device",
|
||||
"SDIO Bus",
|
||||
"Unknown"
|
||||
};
|
||||
|
||||
|
@ -365,7 +368,8 @@ static long _list_device(struct rt_list_node *list)
|
|||
for (node = list->next; node != list; node = node->next)
|
||||
{
|
||||
device = (struct rt_device*)(rt_list_entry(node, struct rt_object, list));
|
||||
rt_kprintf("%-8s %-8s \n", device->parent.name, device_type_str[device->type]);
|
||||
rt_kprintf("%-8s %-8s \n", device->parent.name,
|
||||
(device->type <= RT_Device_Class_Unknown)?device_type_str[device->type]:device_type_str[RT_Device_Class_Unknown]);
|
||||
}
|
||||
|
||||
return 0;
|
||||
|
|
Loading…
Reference in New Issue