mirror of
https://github.com/hathach/tinyusb.git
synced 2025-01-17 05:32:55 +08:00
add supported class to greeting
This commit is contained in:
parent
6f9172c15f
commit
f28d2d1189
@ -187,6 +187,13 @@ void print_greeting(void)
|
||||
- issue at https://github.com/hathach/tinyusb\n\
|
||||
--------------------------------------------------------------------\n\n"
|
||||
);
|
||||
|
||||
puts("This demo support the following classes");
|
||||
if (TUSB_CFG_HOST_HUB ) puts(" - Hub");
|
||||
if (TUSB_CFG_HOST_HID_MOUSE ) puts(" - HID Mouse");
|
||||
if (TUSB_CFG_HOST_HID_KEYBOARD ) puts(" - HID Keyboard");
|
||||
if (TUSB_CFG_HOST_MSC ) puts(" - Mass Storage");
|
||||
if (TUSB_CFG_HOST_CDC ) puts(" - Communication Device Class");
|
||||
}
|
||||
|
||||
//static inline void wait_blocking_us(volatile uint32_t us)
|
||||
|
@ -19,6 +19,10 @@ designed to be simple and run out-of-the-box provided the configuration is corre
|
||||
- Hub
|
||||
- Only support 1 level of hub (due to my laziness)
|
||||
- Multiple host controllers
|
||||
- Android Accessory Open (comming soon)
|
||||
- FTDI (coming soon)
|
||||
- Audio (coming soon)
|
||||
|
||||
|
||||
### Device ###
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user