diff options
| author | hathach <[email protected]> | 2013-03-04 17:07:14 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2013-03-04 17:07:14 +0700 |
| commit | e1033b9b3c10a75fece0c2c398f5ed3f4b08d174 (patch) | |
| tree | 46187ad8c70499817072700c268a5632ad5bf46c /tinyusb/host | |
| parent | 94c004724ccbe2b74af74fc1753184f6b3ccb9cf (diff) | |
replace TUSB_CFG_HOST by MODE_HOST_SUPPORTED
move stuffs around
Diffstat (limited to 'tinyusb/host')
| -rw-r--r-- | tinyusb/host/ehci/ehci.c | 2 | ||||
| -rw-r--r-- | tinyusb/host/hcd.c | 2 | ||||
| -rw-r--r-- | tinyusb/host/usbh.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/tinyusb/host/ehci/ehci.c b/tinyusb/host/ehci/ehci.c index 4c55065cc..c3fda3f3d 100644 --- a/tinyusb/host/ehci/ehci.c +++ b/tinyusb/host/ehci/ehci.c @@ -37,7 +37,7 @@ #include "common/common.h" -#if defined TUSB_CFG_HOST && (MCU == MCU_LPC43XX || MCU == MCU_LPC18XX) +#if MODE_HOST_SUPPORTED && (MCU == MCU_LPC43XX || MCU == MCU_LPC18XX) //--------------------------------------------------------------------+ // INCLUDE //--------------------------------------------------------------------+ diff --git a/tinyusb/host/hcd.c b/tinyusb/host/hcd.c index ad72d49c1..e81809c87 100644 --- a/tinyusb/host/hcd.c +++ b/tinyusb/host/hcd.c @@ -37,7 +37,7 @@ #include "hcd.h" -#ifdef TUSB_CFG_HOST +#if MODE_HOST_SUPPORTED #endif diff --git a/tinyusb/host/usbh.c b/tinyusb/host/usbh.c index 4a63727b1..08adecf15 100644 --- a/tinyusb/host/usbh.c +++ b/tinyusb/host/usbh.c @@ -37,7 +37,7 @@ #include "common/common.h" -#ifdef TUSB_CFG_HOST +#if MODE_HOST_SUPPORTED #define _TINY_USB_SOURCE_FILE_ |
