Browse Source

print correct example name

hathach 6 years ago
parent
commit
1751064f70
1 changed files with 1 additions and 1 deletions
  1. 1 1
      examples/device/cdc_msc_freertos/src/main.c

+ 1 - 1
examples/device/cdc_msc_freertos/src/main.c

@@ -200,7 +200,7 @@ void tud_cdc_line_state_cb(uint8_t itf, bool dtr, bool rts)
   if ( dtr && rts )
   {
     // print initial message when connected
-    tud_cdc_write_str("\r\nTinyUSB CDC MSC HID device with FreeRTOS example\r\n");
+    tud_cdc_write_str("\r\nTinyUSB CDC MSC device with FreeRTOS example\r\n");
   }
 }