Update 1.4.1
This commit is contained in:
parent
c904556e73
commit
fe654a2613
2 changed files with 6 additions and 3 deletions
|
|
@ -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:
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue