From 76dc0e86f6bfee275eec293ac7d6b2b1167c6bcc Mon Sep 17 00:00:00 2001 From: Paul Date: Sat, 5 Oct 2019 17:57:46 +0200 Subject: [PATCH] fix for web server, rolling back to previous ESPAsyncWebServer library --- platformio.ini | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/platformio.ini b/platformio.ini index 118742f17..6c2c6d224 100644 --- a/platformio.ini +++ b/platformio.ini @@ -4,7 +4,7 @@ [platformio] default_envs = release -; default_envs = debug +;default_envs = debug ;default_envs = crash ;default_envs = tests @@ -16,24 +16,26 @@ default_envs = release ; -DFORCE_SERIAL ; -DLOGICANALYZER -general_flags = -g -w -DNO_GLOBAL_EEPROM -DPIO_FRAMEWORK_ARDUINO_LWIP2_HIGHER_BANDWIDTH -DBEARSSL_SSL_BASIC +;general_flags = -g -w -DNO_GLOBAL_EEPROM -DPIO_FRAMEWORK_ARDUINO_LWIP2_HIGHER_BANDWIDTH -DBEARSSL_SSL_BASIC +general_flags = -g -w -DNO_GLOBAL_EEPROM ;general_flags = [env] +;board = esp12e board = d1_mini framework = arduino platform = espressif8266 lib_deps = - ESPAsyncTCP - CRC32 - CircularBuffer - OneWire - JustWifi - AsyncMqttClient - ArduinoJson - EEPROM_Rotate - ESP Async WebServer - ESPAsyncUDP + https://github.com/bakercp/CRC32 + https://github.com/rlogiacco/CircularBuffer + https://github.com/PaulStoffregen/OneWire + https://github.com/xoseperez/justwifi + https://github.com/marvinroger/async-mqtt-client + https://github.com/xoseperez/eeprom_rotate + https://github.com/bblanchon/ArduinoJson + https://github.com/me-no-dev/ESPAsyncUDP + https://github.com/me-no-dev/ESPAsyncTCP + https://github.com/me-no-dev/ESPAsyncWebServer#b0c6144 upload_speed = 921600 monitor_speed = 115200 @@ -57,7 +59,7 @@ extra_scripts = [env:crash] build_type = debug -build_flags = ${common.general_flags} -DCRASH +build_flags = ${common.general_flags} -DNO_GLOBAL_EEPROM -DCRASH extra_scripts = pre:scripts/rename_fw.py pre:scripts/buildweb.py @@ -73,10 +75,8 @@ extra_scripts = extra_scripts = pre:scripts/clean_fw.py [env:release] -build_flags = ${common.general_flags} -extra_scripts = - pre:scripts/rename_fw.py - pre:scripts/buildweb.py +build_flags = ${common.general_flags} -DNO_GLOBAL_EEPROM +extra_scripts = pre:scripts/rename_fw.py [env:checkcode] build_type = debug