summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhathach <[email protected]>2018-12-06 22:24:31 +0700
committerhathach <[email protected]>2018-12-06 22:24:31 +0700
commit7d3ff7aff6aed13377a4cd12f1d8f2ad91720f80 (patch)
treed560ab62d9c685affeaf4c286e2b495d6c6073da
parent5b09774ae05d15cb18ff9920864535b8444a1c3c (diff)
rename CFG_TUSB_HOST_CDC/MSC to CFG_TUH_CDC/MSC
-rw-r--r--docs/configuration.txt4
-rw-r--r--examples/host/cdc_msc_hid/src/main.c4
-rw-r--r--examples/host/cdc_msc_hid/src/tusb_config.h4
-rw-r--r--examples/obsolete/host/src/cdc_serial_host_app.c2
-rw-r--r--examples/obsolete/host/src/cdc_serial_host_app.h2
-rw-r--r--examples/obsolete/host/src/main.c4
-rw-r--r--examples/obsolete/host/src/msc_cli.c2
-rw-r--r--examples/obsolete/host/src/msc_host_app.c2
-rw-r--r--examples/obsolete/host/src/msc_host_app.h2
-rw-r--r--examples/obsolete/host/src/rndis_host_app.c2
-rw-r--r--examples/obsolete/host/src/rndis_host_app.h2
-rw-r--r--examples/obsolete/host/src/tusb_config.h4
-rw-r--r--lib/fatfs/ccsbcs.c4
-rw-r--r--lib/fatfs/diskio.c4
-rw-r--r--lib/fatfs/ff.c4
-rw-r--r--src/class/cdc/cdc_host.c2
-rw-r--r--src/class/cdc/cdc_rndis_host.c2
-rw-r--r--src/class/msc/msc_host.c2
-rw-r--r--src/host/hcd.h2
-rw-r--r--src/tusb.h4
-rw-r--r--tests/lpc18xx_43xx/test/host/cdc/test_cdc_host.c2
-rw-r--r--tests/lpc18xx_43xx/test/host/host_helper.h4
-rw-r--r--tests/support/tusb_config.h6
23 files changed, 35 insertions, 35 deletions
diff --git a/docs/configuration.txt b/docs/configuration.txt
index 896c9da6c..33eb4efbf 100644
--- a/docs/configuration.txt
+++ b/docs/configuration.txt
@@ -44,8 +44,8 @@
#define CFG_TUSB_HOST_HID_KEYBOARD ///< Enable HID Class for Keyboard
#define CFG_TUSB_HOST_HID_MOUSE ///< Enable HID Class for Mouse
#define CFG_TUSB_HOST_HID_GENERIC ///< Enable HID Class for Generic (not supported yet)
-#define CFG_TUSB_HOST_MSC ///< Enable Mass Storage Class (SCSI subclass only)
-#define CFG_TUSB_HOST_CDC ///< Enable Virtual Serial (Communication Device Class)
+#define CFG_TUH_MSC ///< Enable Mass Storage Class (SCSI subclass only)
+#define CFG_TUH_CDC ///< Enable Virtual Serial (Communication Device Class)
/** @} */
/** @} */ // group Host
diff --git a/examples/host/cdc_msc_hid/src/main.c b/examples/host/cdc_msc_hid/src/main.c
index c888f7bf7..81e8a172c 100644
--- a/examples/host/cdc_msc_hid/src/main.c
+++ b/examples/host/cdc_msc_hid/src/main.c
@@ -66,7 +66,7 @@ int main(void)
led_blinking_task();
-#if CFG_TUSB_HOST_CDC
+#if CFG_TUH_CDC
virtual_com_task();
#endif
@@ -81,7 +81,7 @@ int main(void)
//--------------------------------------------------------------------+
// USB CDC
//--------------------------------------------------------------------+
-#if CFG_TUSB_HOST_CDC
+#if CFG_TUH_CDC
void tuh_cdc_mounted_cb(uint8_t dev_addr)
{
diff --git a/examples/host/cdc_msc_hid/src/tusb_config.h b/examples/host/cdc_msc_hid/src/tusb_config.h
index 8d3e39c64..a77d9ba5e 100644
--- a/examples/host/cdc_msc_hid/src/tusb_config.h
+++ b/examples/host/cdc_msc_hid/src/tusb_config.h
@@ -84,11 +84,11 @@
//--------------------------------------------------------------------
#define CFG_TUH_HUB 1
+#define CFG_TUH_CDC 1
#define CFG_TUSB_HOST_HID_KEYBOARD 0
#define CFG_TUSB_HOST_HID_MOUSE 0
#define CFG_TUSB_HOST_HID_GENERIC 0 // (not yet supported)
-#define CFG_TUSB_HOST_MSC 0
-#define CFG_TUSB_HOST_CDC 1
+#define CFG_TUH_MSC 0
#define CFG_TUSB_HOST_DEVICE_MAX (CFG_TUH_HUB ? 5 : 1) // normal hub has 4 ports
diff --git a/examples/obsolete/host/src/cdc_serial_host_app.c b/examples/obsolete/host/src/cdc_serial_host_app.c
index 85604dcdf..1be2e9d8b 100644
--- a/examples/obsolete/host/src/cdc_serial_host_app.c
+++ b/examples/obsolete/host/src/cdc_serial_host_app.c
@@ -39,7 +39,7 @@
#include "cdc_serial_host_app.h"
#include "app_os_prio.h"
-#if CFG_TUSB_HOST_CDC
+#if CFG_TUH_CDC
#define QUEUE_SERIAL_DEPTH 100
diff --git a/examples/obsolete/host/src/cdc_serial_host_app.h b/examples/obsolete/host/src/cdc_serial_host_app.h
index eef00bb55..f95cbbdab 100644
--- a/examples/obsolete/host/src/cdc_serial_host_app.h
+++ b/examples/obsolete/host/src/cdc_serial_host_app.h
@@ -53,7 +53,7 @@
extern "C" {
#endif
-#if CFG_TUSB_HOST_CDC
+#if CFG_TUH_CDC
void cdc_serial_host_app_init(void);
void cdc_serial_host_app_task(void* param);
diff --git a/examples/obsolete/host/src/main.c b/examples/obsolete/host/src/main.c
index 0f2905fc6..320e1c8f5 100644
--- a/examples/obsolete/host/src/main.c
+++ b/examples/obsolete/host/src/main.c
@@ -138,6 +138,6 @@ void print_greeting(void)
if (CFG_TUH_HUB ) puts(" - Hub (1 level only)");
if (CFG_TUSB_HOST_HID_MOUSE ) puts(" - HID Mouse");
if (CFG_TUSB_HOST_HID_KEYBOARD ) puts(" - HID Keyboard");
- if (CFG_TUSB_HOST_MSC ) puts(" - Mass Storage");
- if (CFG_TUSB_HOST_CDC ) puts(" - Communication Device Class");
+ if (CFG_TUH_MSC ) puts(" - Mass Storage");
+ if (CFG_TUH_CDC ) puts(" - Communication Device Class");
}
diff --git a/examples/obsolete/host/src/msc_cli.c b/examples/obsolete/host/src/msc_cli.c
index 75dbb1c01..fa1f986a5 100644
--- a/examples/obsolete/host/src/msc_cli.c
+++ b/examples/obsolete/host/src/msc_cli.c
@@ -39,7 +39,7 @@
#include "msc_cli.h"
#include "ctype.h"
-#if CFG_TUSB_HOST_MSC
+#if CFG_TUH_MSC
#include "ff.h"
#include "diskio.h"
diff --git a/examples/obsolete/host/src/msc_host_app.c b/examples/obsolete/host/src/msc_host_app.c
index 1cfe9ec60..89993cefe 100644
--- a/examples/obsolete/host/src/msc_host_app.c
+++ b/examples/obsolete/host/src/msc_host_app.c
@@ -42,7 +42,7 @@
#include "msc_host_app.h"
#include "app_os_prio.h"
-#if CFG_TUSB_HOST_MSC
+#if CFG_TUH_MSC
#include "msc_cli.h"
#include "ff.h"
diff --git a/examples/obsolete/host/src/msc_host_app.h b/examples/obsolete/host/src/msc_host_app.h
index c6e508e6c..0e153fc1d 100644
--- a/examples/obsolete/host/src/msc_host_app.h
+++ b/examples/obsolete/host/src/msc_host_app.h
@@ -54,7 +54,7 @@
extern "C" {
#endif
-#if CFG_TUSB_HOST_MSC
+#if CFG_TUH_MSC
void msc_host_app_init(void);
void msc_host_app_task(void* param);
diff --git a/examples/obsolete/host/src/rndis_host_app.c b/examples/obsolete/host/src/rndis_host_app.c
index 5bb60182c..374e13a2a 100644
--- a/examples/obsolete/host/src/rndis_host_app.c
+++ b/examples/obsolete/host/src/rndis_host_app.c
@@ -39,7 +39,7 @@
#include "rndis_host_app.h"
#include "app_os_prio.h"
-#if CFG_TUSB_HOST_CDC && CFG_TUSB_HOST_CDC_RNDIS
+#if CFG_TUH_CDC && CFG_TUH_CDC_RNDIS
//--------------------------------------------------------------------+
// MACRO CONSTANT TYPEDEF
diff --git a/examples/obsolete/host/src/rndis_host_app.h b/examples/obsolete/host/src/rndis_host_app.h
index 9fa19351e..2e8437651 100644
--- a/examples/obsolete/host/src/rndis_host_app.h
+++ b/examples/obsolete/host/src/rndis_host_app.h
@@ -53,7 +53,7 @@
extern "C" {
#endif
-#if CFG_TUSB_HOST_CDC && CFG_TUSB_HOST_CDC_RNDIS
+#if CFG_TUH_CDC && CFG_TUH_CDC_RNDIS
void rndis_host_app_init(void);
void rndis_host_app_task(void* param);
diff --git a/examples/obsolete/host/src/tusb_config.h b/examples/obsolete/host/src/tusb_config.h
index 3d0d5f3db..e555c8f35 100644
--- a/examples/obsolete/host/src/tusb_config.h
+++ b/examples/obsolete/host/src/tusb_config.h
@@ -58,8 +58,8 @@
#define CFG_TUSB_HOST_HID_KEYBOARD 1
#define CFG_TUSB_HOST_HID_MOUSE 1
#define CFG_TUSB_HOST_HID_GENERIC 0 // (not yet supported)
-#define CFG_TUSB_HOST_MSC 1
-#define CFG_TUSB_HOST_CDC 1
+#define CFG_TUH_MSC 1
+#define CFG_TUH_CDC 1
#define CFG_TUSB_HOST_DEVICE_MAX (CFG_TUH_HUB ? 5 : 1) // normal hub has 4 ports
diff --git a/lib/fatfs/ccsbcs.c b/lib/fatfs/ccsbcs.c
index 5cf0dd503..07d6f0983 100644
--- a/lib/fatfs/ccsbcs.c
+++ b/lib/fatfs/ccsbcs.c
@@ -27,7 +27,7 @@
#include "ff.h"
-#if CFG_TUSB_HOST_MSC
+#if CFG_TUH_MSC
#if _CODE_PAGE == 437
#define _TBLDEF 1
@@ -540,4 +540,4 @@ WCHAR ff_wtoupper ( /* Upper converted character */
return tbl_lower[i] ? tbl_upper[i] : chr;
}
-#endif // CFG_TUSB_HOST_MSC
+#endif // CFG_TUH_MSC
diff --git a/lib/fatfs/diskio.c b/lib/fatfs/diskio.c
index 54a228019..939015c00 100644
--- a/lib/fatfs/diskio.c
+++ b/lib/fatfs/diskio.c
@@ -38,7 +38,7 @@
#include "tusb.h"
-#if CFG_TUSB_HOST_MSC
+#if CFG_TUH_MSC
//--------------------------------------------------------------------+
// INCLUDE
//--------------------------------------------------------------------+
@@ -204,4 +204,4 @@ DWORD get_fattime (void)
return timestamp.value;
}
-#endif // CFG_TUSB_HOST_MSC
+#endif // CFG_TUH_MSC
diff --git a/lib/fatfs/ff.c b/lib/fatfs/ff.c
index 897965332..79414af07 100644
--- a/lib/fatfs/ff.c
+++ b/lib/fatfs/ff.c
@@ -99,7 +99,7 @@
#include "ff.h" /* FatFs configurations and declarations */
#include "diskio.h" /* Declarations of low level disk I/O functions */
-#if CFG_TUSB_HOST_MSC
+#if CFG_TUH_MSC
/*--------------------------------------------------------------------------
Module Private Definitions
@@ -4327,4 +4327,4 @@ int f_printf (
#endif /* !_FS_READONLY */
#endif /* _USE_STRFUNC */
-#endif // CFG_TUSB_HOST_MSC
+#endif // CFG_TUH_MSC
diff --git a/src/class/cdc/cdc_host.c b/src/class/cdc/cdc_host.c
index 27ef502e0..2cf288a93 100644
--- a/src/class/cdc/cdc_host.c
+++ b/src/class/cdc/cdc_host.c
@@ -38,7 +38,7 @@
#include "tusb_option.h"
-#if (MODE_HOST_SUPPORTED && CFG_TUSB_HOST_CDC)
+#if (MODE_HOST_SUPPORTED && CFG_TUH_CDC)
#define _TINY_USB_SOURCE_FILE_
diff --git a/src/class/cdc/cdc_rndis_host.c b/src/class/cdc/cdc_rndis_host.c
index 89ea3b32f..df4a29938 100644
--- a/src/class/cdc/cdc_rndis_host.c
+++ b/src/class/cdc/cdc_rndis_host.c
@@ -38,7 +38,7 @@
#include "tusb_option.h"
-#if (MODE_HOST_SUPPORTED && CFG_TUSB_HOST_CDC && CFG_TUSB_HOST_CDC_RNDIS)
+#if (MODE_HOST_SUPPORTED && CFG_TUH_CDC && CFG_TUH_CDC_RNDIS)
#define _TINY_USB_SOURCE_FILE_
diff --git a/src/class/msc/msc_host.c b/src/class/msc/msc_host.c
index baef7ff44..12bffdf2d 100644
--- a/src/class/msc/msc_host.c
+++ b/src/class/msc/msc_host.c
@@ -38,7 +38,7 @@
#include "tusb_option.h"
-#if MODE_HOST_SUPPORTED & CFG_TUSB_HOST_MSC
+#if MODE_HOST_SUPPORTED & CFG_TUH_MSC
#define _TINY_USB_SOURCE_FILE_
diff --git a/src/host/hcd.h b/src/host/hcd.h
index a6b1b7027..9637ca661 100644
--- a/src/host/hcd.h
+++ b/src/host/hcd.h
@@ -82,7 +82,7 @@ typedef struct
// Max number of endpoints per device
enum {
HCD_MAX_ENDPOINT = CFG_TUH_HUB + CFG_TUSB_HOST_HID_KEYBOARD + CFG_TUSB_HOST_HID_MOUSE + CFG_TUSB_HOST_HID_GENERIC +
- CFG_TUSB_HOST_MSC*2 + CFG_TUSB_HOST_CDC*3,
+ CFG_TUH_MSC*2 + CFG_TUH_CDC*3,
HCD_MAX_XFER = HCD_MAX_ENDPOINT*2,
};
diff --git a/src/tusb.h b/src/tusb.h
index 4f8918ce5..e31513f87 100644
--- a/src/tusb.h
+++ b/src/tusb.h
@@ -59,11 +59,11 @@
#include "class/hid/hid_host.h"
#endif
- #if CFG_TUSB_HOST_MSC
+ #if CFG_TUH_MSC
#include "class/msc/msc_host.h"
#endif
- #if CFG_TUSB_HOST_CDC
+ #if CFG_TUH_CDC
#include "class/cdc/cdc_host.h"
#endif
diff --git a/tests/lpc18xx_43xx/test/host/cdc/test_cdc_host.c b/tests/lpc18xx_43xx/test/host/cdc/test_cdc_host.c
index 12dce0528..fe7d05516 100644
--- a/tests/lpc18xx_43xx/test/host/cdc/test_cdc_host.c
+++ b/tests/lpc18xx_43xx/test/host/cdc/test_cdc_host.c
@@ -51,7 +51,7 @@
#include "descriptor_cdc.h"
#include "cdc_host.h"
-#if CFG_TUSB_HOST_CDC_RNDIS // TODO enable
+#if CFG_TUH_CDC_RNDIS // TODO enable
#include "cdc_rndis_host.h"
#endif
diff --git a/tests/lpc18xx_43xx/test/host/host_helper.h b/tests/lpc18xx_43xx/test/host/host_helper.h
index c293ec748..b8095b9aa 100644
--- a/tests/lpc18xx_43xx/test/host/host_helper.h
+++ b/tests/lpc18xx_43xx/test/host/host_helper.h
@@ -42,7 +42,7 @@
static inline void helper_class_init_expect(void)
{ // class code number order
-#if CFG_TUSB_HOST_CDC
+#if CFG_TUH_CDC
cdch_init_Expect();
#endif
@@ -50,7 +50,7 @@ static inline void helper_class_init_expect(void)
hidh_init_Expect();
#endif
-#if CFG_TUSB_HOST_MSC
+#if CFG_TUH_MSC
msch_init_Expect();
#endif
diff --git a/tests/support/tusb_config.h b/tests/support/tusb_config.h
index 3e5721019..3aacdabdc 100644
--- a/tests/support/tusb_config.h
+++ b/tests/support/tusb_config.h
@@ -58,10 +58,10 @@
#define CFG_TUH_HUB 0
#define CFG_TUSB_HOST_HID_KEYBOARD 1
#define CFG_TUSB_HOST_HID_MOUSE 1
-#define CFG_TUSB_HOST_MSC 1
+#define CFG_TUH_MSC 1
#define CFG_TUSB_HOST_HID_GENERIC 0
-#define CFG_TUSB_HOST_CDC 1
-#define CFG_TUSB_HOST_CDC_RNDIS 0
+#define CFG_TUH_CDC 1
+#define CFG_TUH_CDC_RNDIS 0
// Test support
#define TEST_CONTROLLER_HOST_START_INDEX \