Browse Source

Add more device type.

git-svn-id: https://rt-thread.googlecode.com/svn/trunk@1838 bbd45198-f89e-11dd-88c7-29a3b14d5316
wuyangyong 13 years ago
parent
commit
44b3b3ad87
1 changed files with 5 additions and 1 deletions
  1. 5 1
      components/finsh/cmd.c

+ 5 - 1
components/finsh/cmd.c

@@ -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;