From b245189aed142bb1523bc26ee3546bfd696e7075 Mon Sep 17 00:00:00 2001 From: lumapu Date: Sun, 10 Mar 2024 14:55:50 +0100 Subject: [PATCH] 0.8.92 * added new environment `esp8266-all` which replace the original `esp8266`. The original now only have `MqTT` support but `Display` and `History` plugins are not included any more #1451 --- .github/workflows/compile_development.yml | 2 ++ src/CHANGES.md | 1 + src/platformio.ini | 25 ++++++++++++++++++++++- 3 files changed, 27 insertions(+), 1 deletion(-) diff --git a/.github/workflows/compile_development.yml b/.github/workflows/compile_development.yml index 48a3f42a..61f99c52 100644 --- a/.github/workflows/compile_development.yml +++ b/.github/workflows/compile_development.yml @@ -24,6 +24,7 @@ jobs: matrix: variant: - esp8266 + - esp8266-all - esp8266-minimal - esp8266-prometheus - esp8285 @@ -87,6 +88,7 @@ jobs: matrix: variant: - esp8266-de + - esp8266-all-de - esp8266-prometheus-de - esp8285-de - esp32-wroom32-de diff --git a/src/CHANGES.md b/src/CHANGES.md index e6e0ff70..0ddc7101 100644 --- a/src/CHANGES.md +++ b/src/CHANGES.md @@ -4,6 +4,7 @@ * fix read back of limit value, now with one decimal place * added grid profile for Mexico #1493 * added language to display on compile time #1484, #1255, #1479 +* added new environment `esp8266-all` which replace the original `esp8266`. The original now only have `MqTT` support but `Display` and `History` plugins are not included any more #1451 ## 0.8.91 - 2024-03-05 * fix javascript issues #1480 diff --git a/src/platformio.ini b/src/platformio.ini index e9e63465..a6a16af6 100644 --- a/src/platformio.ini +++ b/src/platformio.ini @@ -44,6 +44,29 @@ build_unflags = platform = espressif8266 board = esp12e board_build.f_cpu = 80000000L +build_flags = ${env.build_flags} + -DEMC_MIN_FREE_MEMORY=4096 + -DENABLE_MQTT + ;-Wl,-Map,output.map +monitor_filters = + esp8266_exception_decoder + +[env:esp8266-de] +platform = espressif8266 +board = esp12e +board_build.f_cpu = 80000000L +build_flags = ${env.build_flags} + -DEMC_MIN_FREE_MEMORY=4096 + -DLANG_DE + -DENABLE_MQTT + ;-Wl,-Map,output.map +monitor_filters = + esp8266_exception_decoder + +[env:esp8266-all] +platform = espressif8266 +board = esp12e +board_build.f_cpu = 80000000L build_flags = ${env.build_flags} -DEMC_MIN_FREE_MEMORY=4096 -DENABLE_MQTT @@ -53,7 +76,7 @@ build_flags = ${env.build_flags} monitor_filters = esp8266_exception_decoder -[env:esp8266-de] +[env:esp8266-all-de] platform = espressif8266 board = esp12e board_build.f_cpu = 80000000L