diff options
author | Zach Eveland <zeveland@blacklabel-development.com> | 2011-08-30 11:50:08 -0400 |
---|---|---|
committer | Zach Eveland <zeveland@blacklabel-development.com> | 2011-08-30 11:50:08 -0400 |
commit | af635024db2b5d46d57eb5f5da959f6b4f4bf42c (patch) | |
tree | 37c2727e05642c2ed5ca2b9267adbf2d6fde70ce /cores/arduino/HID.cpp | |
parent | 481fdeab797d449f6b82473b1e377c495224cff7 (diff) |
support for non-Leonardo boards is back!
Diffstat (limited to 'cores/arduino/HID.cpp')
-rw-r--r-- | cores/arduino/HID.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/cores/arduino/HID.cpp b/cores/arduino/HID.cpp index 36e9b67..cea90fc 100644 --- a/cores/arduino/HID.cpp +++ b/cores/arduino/HID.cpp @@ -20,6 +20,7 @@ #include "USBAPI.h" #include "USBDesc.h" +#if defined(USBCON) #ifdef HID_ENABLED //#define RAWHID_ENABLED @@ -419,4 +420,6 @@ size_t Keyboard_::write(uint8_t c) return 1; } -#endif
\ No newline at end of file +#endif + +#endif /* if defined(USBCON) */
\ No newline at end of file |