diff options
Diffstat (limited to 'tinyusb/tusb.h')
| -rw-r--r-- | tinyusb/tusb.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/tinyusb/tusb.h b/tinyusb/tusb.h index f7c14d9f6..0e5ddc8ca 100644 --- a/tinyusb/tusb.h +++ b/tinyusb/tusb.h @@ -59,15 +59,19 @@ #if MODE_HOST_SUPPORTED #include "host/usbh.h" - #ifdef HOST_CLASS_HID + #if HOST_CLASS_HID #include "class/hid_host.h" #endif - #define HOST_CLASS_MSC +// #define HOST_CLASS_MSC // FIXME hack to test massstorage class #ifdef HOST_CLASS_MSC #include "class/msc_host.h" #endif + #if TUSB_CFG_HOST_CUSTOM_CLASS + #include "class/custom_class.h" + #endif + #endif //------------- DEVICE -------------// |
