Browse Source

rename custom/custom-_* to vendor/vendor_*

hathach 6 years ago
parent
commit
a3cb2dda9e

+ 1 - 1
src/class/custom/custom_device.c → src/class/vendor/vendor_device.c

@@ -29,7 +29,7 @@
 #if (TUSB_OPT_DEVICE_ENABLED && CFG_TUD_VENDOR)
 
 #include "common/tusb_common.h"
-#include "custom_device.h"
+#include "vendor_device.h"
 #include "device/usbd_pvt.h"
 
 /*------------------------------------------------------------------*/

+ 0 - 0
src/class/custom/custom_device.h → src/class/vendor/vendor_device.h


+ 1 - 1
src/class/custom/custom_host.c → src/class/vendor/vendor_host.c

@@ -32,7 +32,7 @@
 // INCLUDE
 //--------------------------------------------------------------------+
 #include "common/tusb_common.h"
-#include "custom_host.h"
+#include "vendor_host.h"
 
 //--------------------------------------------------------------------+
 // MACRO CONSTANT TYPEDEF

+ 0 - 0
src/class/custom/custom_host.h → src/class/vendor/vendor_host.h


+ 2 - 2
src/tusb.h

@@ -55,7 +55,7 @@
   #endif
 
   #if CFG_TUH_VENDOR
-    #include "class/custom_host.h"
+    #include "class/vendor/vendor_host.h"
   #endif
 
 #endif
@@ -81,7 +81,7 @@
   #endif
 
   #if CFG_TUD_VENDOR
-    #include "class/custom/custom_device.h"
+    #include "class/vendor/vendor_device.h"
   #endif
 #endif