Przeglądaj źródła

move class files

hathach 8 lat temu
rodzic
commit
98f12c9833

+ 0 - 0
tinyusb/class/cdc.h → tinyusb/class/cdc/cdc.h


+ 0 - 0
tinyusb/class/cdc_device.c → tinyusb/class/cdc/cdc_device.c


+ 0 - 0
tinyusb/class/cdc_device.h → tinyusb/class/cdc/cdc_device.h


+ 0 - 0
tinyusb/class/cdc_host.c → tinyusb/class/cdc/cdc_host.c


+ 0 - 0
tinyusb/class/cdc_host.h → tinyusb/class/cdc/cdc_host.h


+ 0 - 0
tinyusb/class/cdc_rndis.h → tinyusb/class/cdc/cdc_rndis.h


+ 0 - 0
tinyusb/class/cdc_rndis_host.c → tinyusb/class/cdc/cdc_rndis_host.c


+ 0 - 0
tinyusb/class/cdc_rndis_host.h → tinyusb/class/cdc/cdc_rndis_host.h


+ 0 - 0
tinyusb/class/hid.h → tinyusb/class/hid/hid.h


+ 0 - 0
tinyusb/class/hid_device.c → tinyusb/class/hid/hid_device.c


+ 0 - 0
tinyusb/class/hid_device.h → tinyusb/class/hid/hid_device.h


+ 0 - 0
tinyusb/class/hid_host.c → tinyusb/class/hid/hid_host.c


+ 0 - 0
tinyusb/class/hid_host.h → tinyusb/class/hid/hid_host.h


+ 0 - 0
tinyusb/class/msc.h → tinyusb/class/msc/msc.h


+ 0 - 0
tinyusb/class/msc_device.c → tinyusb/class/msc/msc_device.c


+ 0 - 0
tinyusb/class/msc_device.h → tinyusb/class/msc/msc_device.h


+ 0 - 0
tinyusb/class/msc_host.c → tinyusb/class/msc/msc_host.c


+ 0 - 0
tinyusb/class/msc_host.h → tinyusb/class/msc/msc_host.h


+ 6 - 6
tinyusb/tusb.h

@@ -55,15 +55,15 @@
   #include "host/usbh.h"
 
   #if HOST_CLASS_HID
-    #include "class/hid_host.h"
+    #include "class/hid/hid_host.h"
   #endif
 
   #if TUSB_CFG_HOST_MSC
-    #include "class/msc_host.h"
+    #include "class/msc/msc_host.h"
   #endif
 
   #if TUSB_CFG_HOST_CDC
-    #include "class/cdc_host.h"
+    #include "class/cdc/cdc_host.h"
   #endif
 
   #if TUSB_CFG_HOST_CUSTOM_CLASS
@@ -77,15 +77,15 @@
   #include "device/usbd.h"
 
   #if DEVICE_CLASS_HID
-    #include "class/hid_device.h"
+    #include "class/hid/hid_device.h"
   #endif
 
   #if TUSB_CFG_DEVICE_CDC
-    #include "class/cdc_device.h"
+    #include "class/cdc/cdc_device.h"
   #endif
 
   #if TUSB_CFG_DEVICE_MSC
-    #include "class/msc_device.h"
+    #include "class/msc/msc_device.h"
   #endif
 #endif