Skip to content

Commit 056865e

Browse files
committed
Version 0.9.76
#includes for Arduino.h corrected to work in Linux (case insensitive F.S.) - thanks @wd5gnr
1 parent 35f5a01 commit 056865e

File tree

12 files changed

+5
-4
lines changed

12 files changed

+5
-4
lines changed

Examples/SerialDebug_advanced/Avr/SerialDebug_advanced/SerialDebug_advanced.ino

100644100755
File mode changed.

Examples/SerialDebug_advanced/Others/SerialDebug_advanced/SerialDebug_advanced.ino

100644100755
File mode changed.

Examples/SerialDebug_basic/SerialDebug_basic.ino

100644100755
File mode changed.

Examples/SerialDebug_options/SerialDebug_options.ino

100644100755
File mode changed.

src/SerialDebug.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
* Note: This lybrary not use tasks, when for ESP32, due avoid serial output mixed
88
* Versions :
99
* ------ ---------- -------------------------
10+
* 0.9.76 2018-10-26 #includes for Arduino.h corrected to work in Linux (case insensitive F.S.) - thanks @wd5gnr
1011
* 0.9.75 2018-10-25 Few adjustments
1112
* 0.9.74 2018-10-25 Adjustments to SerialDebugApp show debugger info in App
1213
* Now low memory boards have debugger disabled by default, but enabled commands (debug level, help ...)
@@ -127,7 +128,7 @@
127128
// Version -- Note to JoaoLopesF -> not forgot change it in github repo and versoes.txt (for app)
128129
// -> Testing of low, medium e enough memory boards
129130

130-
#define DEBUG_VERSION F("0.9.75") // Version of this library
131+
#define DEBUG_VERSION F("0.9.76") // Version of this library
131132

132133
// Low memory board ?
133134

src/SerialDebug.h

100644100755
File mode changed.

src/utility/Boards.h

100644100755
File mode changed.

src/utility/Fields.cpp

100644100755
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
///// Includes
1212

13-
#include <arduino.h>
13+
#include <Arduino.h>
1414

1515
#include <utility/Fields.h>
1616
#include <utility/Util.h>

src/utility/Fields.h

100644100755
File mode changed.

src/utility/Util.cpp

100644100755
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
///// Includes
1313

14-
#include <arduino.h>
14+
#include <Arduino.h>
1515

1616

1717
////// Routines

0 commit comments

Comments
 (0)