diff options
Diffstat (limited to 'tinyusb/tusb.h')
| -rw-r--r-- | tinyusb/tusb.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/tinyusb/tusb.h b/tinyusb/tusb.h index 0e5ddc8ca..b06b0122e 100644 --- a/tinyusb/tusb.h +++ b/tinyusb/tusb.h @@ -63,11 +63,14 @@ #include "class/hid_host.h" #endif -// #define HOST_CLASS_MSC // FIXME hack to test massstorage class - #ifdef HOST_CLASS_MSC + #if TUSB_CFG_HOST_MSC #include "class/msc_host.h" #endif + #if TUSB_CFG_HOST_CDC + #include "class/cdc_host.h" + #endif + #if TUSB_CFG_HOST_CUSTOM_CLASS #include "class/custom_class.h" #endif |
