diff --git a/Readme.md b/Readme.md index 71037aa..476d730 100644 --- a/Readme.md +++ b/Readme.md @@ -13,6 +13,7 @@ The idea is to enable enhanced USB functions to almost all 'standard' Arduino bo * Leonardo * (Pro)Micro * Any other 8u2/16u2/at90usb8/162/32u2/32u4 compatible board +* No SAM/ARM support (Due, Zero etc) **Supported HID devices:** * Keyboard with Leds out (modifiers + 6 keys pressed at the same time) diff --git a/src/HID-Project.h b/src/HID-Project.h index f6b3d6c..0a0dde7 100644 --- a/src/HID-Project.h +++ b/src/HID-Project.h @@ -27,8 +27,6 @@ THE SOFTWARE. // Software version #define HID_PROJECT_VERSION 240 -#include //TODO - #if ARDUINO < 10606 #error HID Project requires Arduino IDE 1.6.6 or greater. Please update your IDE. #endif @@ -46,14 +44,11 @@ THE SOFTWARE. #include "MultiReport/Gamepad.h" #include "MultiReport/System.h" #include "SingleReport/RawHID.h" - -// Include Teensy HID afterwards to overwrite key definitions if used -// TODO include Teensy API if non english keyboard layout was used -#ifdef USE_TEENSY_KEYBOARD -//#include "TeensyKeyboard.h" -#else #include "SingleReport/BootKeyboard.h" #include "MultiReport/ImprovedKeyboard.h" #include "SingleReport/SingleNKROKeyboard.h" #include "MultiReport/NKROKeyboard.h" -#endif + +// Include Teensy HID afterwards to overwrite key definitions if used +// TODO include Teensy API if non english keyboard layout was used +