diff options
| author | hathach <[email protected]> | 2012-11-27 17:41:00 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2012-11-27 17:41:00 +0700 |
| commit | 545fe61828b3982a25b87b4ceb792c68415e4cf4 (patch) | |
| tree | e858b5541c554bbc912e2b002e68df66d469d9eb /tinyusb/tusb.h | |
| parent | 54e5289b730b387d7e494cce270aca47356e064f (diff) | |
start to add hid keyboard
Diffstat (limited to 'tinyusb/tusb.h')
| -rw-r--r-- | tinyusb/tusb.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/tinyusb/tusb.h b/tinyusb/tusb.h index 2c219e58d..a793e0da0 100644 --- a/tinyusb/tusb.h +++ b/tinyusb/tusb.h @@ -46,7 +46,11 @@ #include "tusb_cfg.h" #ifdef CFG_TUSB_DEVICE -#include "device/dcd.h" + #include "device/dcd.h" +#endif + +#if CLASS_HID + #include "class/hid.h" #endif #ifdef __cplusplus |
