diff options
| author | hathach <[email protected]> | 2021-02-22 18:02:52 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2021-02-22 18:02:52 +0700 |
| commit | 8a2e4c79fd6a5b7927ae07bececc30ca79d9edf2 (patch) | |
| tree | 899e17ddd9816e8a31b393eaec5831288496ac4b /src/host | |
| parent | 00b4b74e8276691dfc4a20163b472c7bd15f4f51 (diff) | |
make hcd tdi more generic
Diffstat (limited to 'src/host')
| -rw-r--r-- | src/host/ehci/ehci.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/host/ehci/ehci.c b/src/host/ehci/ehci.c index 23c8ea9ee..f3a5cf9cd 100644 --- a/src/host/ehci/ehci.c +++ b/src/host/ehci/ehci.c @@ -26,7 +26,10 @@ #include "common/tusb_common.h" -#if TUSB_OPT_HOST_ENABLED && (CFG_TUSB_MCU == OPT_MCU_LPC43XX || CFG_TUSB_MCU == OPT_MCU_LPC18XX) +#if TUSB_OPT_HOST_ENABLED && \ + (CFG_TUSB_MCU == OPT_MCU_LPC43XX || CFG_TUSB_MCU == OPT_MCU_LPC18XX || \ + CFG_TUSB_MCU == OPT_MCU_MIMXRT10XX ) + //--------------------------------------------------------------------+ // INCLUDE //--------------------------------------------------------------------+ |
