From 5de626ead1a1837e83456ac55edf3615f3de5ee0 Mon Sep 17 00:00:00 2001 From: Patrick Balsiger Date: Fri, 21 Feb 2020 14:35:51 +0100 Subject: [PATCH] fix: drop ESP32 support for now --- .gitignore | 3 +-- .vscode/extensions.json | 12 ++++++------ src/WebUtils.h | 8 ++++---- 3 files changed, 11 insertions(+), 12 deletions(-) diff --git a/.gitignore b/.gitignore index a368c67..34dbf2d 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,4 @@ -.pioenvs -.piolibdeps +.pio .vscode/.browse.c_cpp.db* .vscode/c_cpp_properties.json .vscode/launch.json \ No newline at end of file diff --git a/.vscode/extensions.json b/.vscode/extensions.json index 8281e64..0f0d740 100644 --- a/.vscode/extensions.json +++ b/.vscode/extensions.json @@ -1,7 +1,7 @@ { - // See http://go.microsoft.com/fwlink/?LinkId=827846 - // for the documentation about the extensions.json format - "recommendations": [ - "platformio.platformio-ide" - ] -} \ No newline at end of file + // See http://go.microsoft.com/fwlink/?LinkId=827846 + // for the documentation about the extensions.json format + "recommendations": [ + "platformio.platformio-ide" + ] +} diff --git a/src/WebUtils.h b/src/WebUtils.h index ce08be1..eeb0d24 100644 --- a/src/WebUtils.h +++ b/src/WebUtils.h @@ -4,11 +4,11 @@ #include #include #include -#ifdef ESP32 -#include -#elif defined(ESP8266) +//#ifdef ESP32 +//#include +//#elif defined(ESP8266) #include -#endif +//#endif class WebUtils {