mirror of
https://github.com/lumapu/ahoy.git
synced 2025-05-02 19:55:54 +02:00
0.8.128
* add environments for 16MB flash size ESP32-S3 aka opendtufusion
This commit is contained in:
parent
8cdf3644df
commit
82e4d84522
4 changed files with 44 additions and 1 deletions
4
.github/workflows/compile_development.yml
vendored
4
.github/workflows/compile_development.yml
vendored
|
@ -25,6 +25,8 @@ jobs:
|
||||||
variant:
|
variant:
|
||||||
- opendtufusion
|
- opendtufusion
|
||||||
- opendtufusion-ethernet
|
- opendtufusion-ethernet
|
||||||
|
- opendtufusion-16MB
|
||||||
|
- opendtufusion-ethernet-16MB
|
||||||
- esp8266
|
- esp8266
|
||||||
- esp8266-all
|
- esp8266-all
|
||||||
- esp8266-minimal
|
- esp8266-minimal
|
||||||
|
@ -94,6 +96,8 @@ jobs:
|
||||||
variant:
|
variant:
|
||||||
- opendtufusion-de
|
- opendtufusion-de
|
||||||
- opendtufusion-ethernet-de
|
- opendtufusion-ethernet-de
|
||||||
|
- opendtufusion-16MB-de
|
||||||
|
- opendtufusion-ethernet-16MB-de
|
||||||
- esp8266-de
|
- esp8266-de
|
||||||
- esp8266-all-de
|
- esp8266-all-de
|
||||||
- esp8266-prometheus-de
|
- esp8266-prometheus-de
|
||||||
|
|
|
@ -1,5 +1,8 @@
|
||||||
# Development Changes
|
# Development Changes
|
||||||
|
|
||||||
|
## 0.8.128 - 2024-07-02
|
||||||
|
* add environments for 16MB flash size ESP32-S3 aka opendtufusion
|
||||||
|
|
||||||
## 0.8.127 - 2024-06-21
|
## 0.8.127 - 2024-06-21
|
||||||
* add grid file #1677
|
* add grid file #1677
|
||||||
* merge PR: Bugfix Inv delete not working with password protection #1678
|
* merge PR: Bugfix Inv delete not working with password protection #1678
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
//-------------------------------------
|
//-------------------------------------
|
||||||
#define VERSION_MAJOR 0
|
#define VERSION_MAJOR 0
|
||||||
#define VERSION_MINOR 8
|
#define VERSION_MINOR 8
|
||||||
#define VERSION_PATCH 127
|
#define VERSION_PATCH 128
|
||||||
//-------------------------------------
|
//-------------------------------------
|
||||||
typedef struct {
|
typedef struct {
|
||||||
uint8_t ch;
|
uint8_t ch;
|
||||||
|
|
|
@ -353,3 +353,39 @@ build_flags = ${env:opendtufusion-ethernet.build_flags}
|
||||||
-DLANG_DE
|
-DLANG_DE
|
||||||
monitor_filters =
|
monitor_filters =
|
||||||
esp32_exception_decoder, colorize
|
esp32_exception_decoder, colorize
|
||||||
|
|
||||||
|
[env:opendtufusion-16MB]
|
||||||
|
platform = espressif32@6.6.0
|
||||||
|
board = esp32-s3-devkitc-1
|
||||||
|
board_upload.flash_size = 16MB
|
||||||
|
upload_protocol = esp-builtin
|
||||||
|
build_flags = ${env:opendtufusion.build_flags}
|
||||||
|
monitor_filters =
|
||||||
|
esp32_exception_decoder, colorize
|
||||||
|
|
||||||
|
[env:opendtufusion-16MB-de]
|
||||||
|
platform = espressif32@6.6.0
|
||||||
|
board = esp32-s3-devkitc-1
|
||||||
|
upload_protocol = esp-builtin
|
||||||
|
build_flags = ${env:opendtufusion-16MB.build_flags}
|
||||||
|
-DLANG_DE
|
||||||
|
monitor_filters =
|
||||||
|
esp32_exception_decoder, colorize
|
||||||
|
|
||||||
|
[env:opendtufusion-ethernet-16MB]
|
||||||
|
platform = espressif32@6.6.0
|
||||||
|
board = esp32-s3-devkitc-1
|
||||||
|
board_upload.flash_size = 16MB
|
||||||
|
upload_protocol = esp-builtin
|
||||||
|
build_flags = ${env:opendtufusion-ethernet.build_flags}
|
||||||
|
monitor_filters =
|
||||||
|
esp32_exception_decoder, colorize
|
||||||
|
|
||||||
|
[env:opendtufusion-ethernet-16MB-de]
|
||||||
|
platform = espressif32@6.6.0
|
||||||
|
board = esp32-s3-devkitc-1
|
||||||
|
upload_protocol = esp-builtin
|
||||||
|
build_flags = ${env:opendtufusion-ethernet-16MB.build_flags}
|
||||||
|
-DLANG_DE
|
||||||
|
monitor_filters =
|
||||||
|
esp32_exception_decoder, colorize
|
||||||
|
|
Loading…
Add table
Reference in a new issue