From 5350c4a23766802cac02a1984ae0b7b1f231323e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Xose=20P=C3=A9rez?= Date: Mon, 23 Oct 2017 17:01:37 +0200 Subject: [PATCH] Using forked ESPAsyncTCP library with 2.4.0-RC2 and SSL support --- code/platformio.ini | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/code/platformio.ini b/code/platformio.ini index 31069197..821b460b 100644 --- a/code/platformio.ini +++ b/code/platformio.ini @@ -4,19 +4,21 @@ src_dir = espurna data_dir = espurna/data [common] -platform = espressif8266 -#platform = espressif8266_stage +#platform = espressif8266 +platform = espressif8266_stage build_flags = -g -DMQTT_MAX_PACKET_SIZE=400 ${env.ESPURNA_FLAGS} debug_flags = -DDEBUG_ESP_CORE -DDEBUG_ESP_SSL -DDEBUG_ESP_WIFI -DDEBUG_ESP_HTTP_CLIENT -DDEBUG_ESP_HTTP_UPDATE -DDEBUG_ESP_HTTP_SERVER -DDEBUG_ESP_UPDATER -DDEBUG_ESP_OTA -DDEBUG_TLS_MEM build_flags_512k = ${common.build_flags} -Wl,-Tesp8266.flash.512k0.ld build_flags_1m = ${common.build_flags} -Wl,-Tesp8266.flash.1m0.ld -#https://github.com/me-no-dev/ESPAsyncTCP#036ea44 +#https://github.com/me-no-dev/ESPAsyncTCP#9b0cc37 // 2.3.0 compatible +#https://github.com/me-no-dev/ESPAsyncTCP#036ea44 // 2.4.0-rc2 compatible (no SSL) +#https://github.com/xoseperez/ESPAsyncTCP#066c79d // 2.4.0-rc2 compatible (with SSL) lib_deps = DHT sensor library Adafruit Unified Sensor https://github.com/xoseperez/Time ArduinoJson - https://github.com/me-no-dev/ESPAsyncTCP#9b0cc37 + https://github.com/xoseperez/ESPAsyncTCP#066c79d https://github.com/me-no-dev/ESPAsyncWebServer#313f337 https://github.com/marvinroger/async-mqtt-client#v0.8.1 PubSubClient