diff --git a/HID_Source/USBAPI.h b/HID_Source/USBAPI.h index 5170723..43faeba 100644 --- a/HID_Source/USBAPI.h +++ b/HID_Source/USBAPI.h @@ -47,7 +47,7 @@ extern USBDevice_ USBDevice; // Serial over CDC (Serial1 is the physical port) // v1.5.7 or newer -#if Arduino >= 157 +#if ARDUINO >= 157 struct ring_buffer; #if (RAMEND < 1000) @@ -84,7 +84,7 @@ extern Serial_ Serial; #define HAVE_CDCSERIAL // v1.5.0 - v1.5.6 -#elif Arduino >= 150 +#elif ARDUINO >= 150 struct ring_buffer; #if (RAMEND < 1000) @@ -118,7 +118,7 @@ extern Serial_ Serial; #define HAVE_CDCSERIAL // v1.0.1 - v1.0.x -#elif Arduino > 100 +#elif ARDUINO > 100 class Serial_ : public Stream { private: diff --git a/Readme.md b/Readme.md index 17e3e88..854dc87 100644 --- a/Readme.md +++ b/Readme.md @@ -167,6 +167,9 @@ Oh and by the way: I also removed some bugs from the official firmware. Version History =============== ``` +1.4.1 Beta Release (10.07.2014) +* #define Bugfix in USBAPI.h + 1.4 Beta Release (10.07.2014) * Bugfixes in the Hoodloader: * Added Lite Version with less ram usage