From 03f5d62323f238552de57e91b48cff41a7a7009c Mon Sep 17 00:00:00 2001 From: me-no-dev Date: Thu, 6 Oct 2016 15:41:16 +0300 Subject: [PATCH] Wiring.h -> Arduino.h --- cores/esp32/IPAddress.cpp | 2 +- cores/esp32/Print.cpp | 2 +- cores/esp32/Stream.cpp | 2 +- cores/esp32/WCharacter.h | 1 - 4 files changed, 3 insertions(+), 4 deletions(-) diff --git a/cores/esp32/IPAddress.cpp b/cores/esp32/IPAddress.cpp index c2c0811b..635c8bf0 100644 --- a/cores/esp32/IPAddress.cpp +++ b/cores/esp32/IPAddress.cpp @@ -17,7 +17,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ -#include +#include #include #include diff --git a/cores/esp32/Print.cpp b/cores/esp32/Print.cpp index e01304ff..b37d5269 100644 --- a/cores/esp32/Print.cpp +++ b/cores/esp32/Print.cpp @@ -25,7 +25,7 @@ #include #include #include -#include "Wiring.h" +#include "Arduino.h" #include "Print.h" extern "C" { diff --git a/cores/esp32/Stream.cpp b/cores/esp32/Stream.cpp index 6d1b1fc8..59b0bafe 100644 --- a/cores/esp32/Stream.cpp +++ b/cores/esp32/Stream.cpp @@ -20,7 +20,7 @@ parsing functions based on TextFinder library by Michael Margolis */ -#include "Wiring.h" +#include "Arduino.h" #include "Stream.h" #include "esp32-hal.h" diff --git a/cores/esp32/WCharacter.h b/cores/esp32/WCharacter.h index 93e5dda4..53428873 100644 --- a/cores/esp32/WCharacter.h +++ b/cores/esp32/WCharacter.h @@ -21,7 +21,6 @@ #define Character_h #include -#include "WTypes.h" #define isascii(__c) ((unsigned)(__c)<=0177) #define toascii(__c) ((__c)&0177)