mirror of
https://github.com/lumapu/ahoy.git
synced 2025-08-06 09:58:23 +02:00
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
This commit is contained in:
parent
c1a9860daa
commit
b245189aed
3 changed files with 27 additions and 1 deletions
2
.github/workflows/compile_development.yml
vendored
2
.github/workflows/compile_development.yml
vendored
|
@ -24,6 +24,7 @@ jobs:
|
||||||
matrix:
|
matrix:
|
||||||
variant:
|
variant:
|
||||||
- esp8266
|
- esp8266
|
||||||
|
- esp8266-all
|
||||||
- esp8266-minimal
|
- esp8266-minimal
|
||||||
- esp8266-prometheus
|
- esp8266-prometheus
|
||||||
- esp8285
|
- esp8285
|
||||||
|
@ -87,6 +88,7 @@ jobs:
|
||||||
matrix:
|
matrix:
|
||||||
variant:
|
variant:
|
||||||
- esp8266-de
|
- esp8266-de
|
||||||
|
- esp8266-all-de
|
||||||
- esp8266-prometheus-de
|
- esp8266-prometheus-de
|
||||||
- esp8285-de
|
- esp8285-de
|
||||||
- esp32-wroom32-de
|
- esp32-wroom32-de
|
||||||
|
|
|
@ -4,6 +4,7 @@
|
||||||
* fix read back of limit value, now with one decimal place
|
* fix read back of limit value, now with one decimal place
|
||||||
* added grid profile for Mexico #1493
|
* added grid profile for Mexico #1493
|
||||||
* added language to display on compile time #1484, #1255, #1479
|
* 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
|
## 0.8.91 - 2024-03-05
|
||||||
* fix javascript issues #1480
|
* fix javascript issues #1480
|
||||||
|
|
|
@ -44,6 +44,29 @@ build_unflags =
|
||||||
platform = espressif8266
|
platform = espressif8266
|
||||||
board = esp12e
|
board = esp12e
|
||||||
board_build.f_cpu = 80000000L
|
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}
|
build_flags = ${env.build_flags}
|
||||||
-DEMC_MIN_FREE_MEMORY=4096
|
-DEMC_MIN_FREE_MEMORY=4096
|
||||||
-DENABLE_MQTT
|
-DENABLE_MQTT
|
||||||
|
@ -53,7 +76,7 @@ build_flags = ${env.build_flags}
|
||||||
monitor_filters =
|
monitor_filters =
|
||||||
esp8266_exception_decoder
|
esp8266_exception_decoder
|
||||||
|
|
||||||
[env:esp8266-de]
|
[env:esp8266-all-de]
|
||||||
platform = espressif8266
|
platform = espressif8266
|
||||||
board = esp12e
|
board = esp12e
|
||||||
board_build.f_cpu = 80000000L
|
board_build.f_cpu = 80000000L
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue