diff options
| author | hathach <[email protected]> | 2021-05-11 18:19:42 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2021-05-18 12:58:24 +0700 |
| commit | 4023d05e9306c68a3760fd696220868eab69a0d4 (patch) | |
| tree | 20ad4bfb27f07277d6f2382be200c509a879de96 /examples | |
| parent | 13613eafb70acd028572305b3e0b9064f905b835 (diff) | |
minor clean up
Diffstat (limited to 'examples')
| -rw-r--r-- | examples/host/cdc_msc_hid/src/main.c | 21 |
1 files changed, 5 insertions, 16 deletions
diff --git a/examples/host/cdc_msc_hid/src/main.c b/examples/host/cdc_msc_hid/src/main.c index 84e88e509..652a372e9 100644 --- a/examples/host/cdc_msc_hid/src/main.c +++ b/examples/host/cdc_msc_hid/src/main.c @@ -316,23 +316,12 @@ void print_greeting(void) [OPT_OS_RTTHREAD] = "RT-Thread" }; - printf("--------------------------------------------------------------------\r\n"); - printf("- Host example\r\n"); - printf("- if you find any bugs or get any questions, feel free to file an\r\n"); - printf("- issue at https://github.com/hathach/tinyusb\r\n"); - printf("--------------------------------------------------------------------\r\n\r\n"); + printf("----------------------------------------------------\r\n"); + printf("TinyUSB Host Example\r\n"); + printf("If you find any bugs or problems, feel free to open\r\n"); + printf("an issue at https://github.com/hathach/tinyusb\r\n"); + printf("----------------------------------------------------\r\n\r\n"); printf("This Host demo is configured to support:\r\n"); printf(" - RTOS = %s\r\n", rtos_name[CFG_TUSB_OS]); - -#if CFG_TUH_CDC - printf(" - Communication Device Class\r\n"); -#endif - -#if CFG_TUH_MSC - printf(" - Mass Storage\r\n"); -#endif - -// if (CFG_TUH_HID_KEYBOARD ) puts(" - HID Keyboard"); -// if (CFG_TUH_HID_MOUSE ) puts(" - HID Mouse"); } |
