mirror of
https://github.com/lumapu/ahoy.git
synced 2025-04-28 17:56:21 +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:
|
||||
- opendtufusion
|
||||
- opendtufusion-ethernet
|
||||
- opendtufusion-16MB
|
||||
- opendtufusion-ethernet-16MB
|
||||
- esp8266
|
||||
- esp8266-all
|
||||
- esp8266-minimal
|
||||
|
@ -94,6 +96,8 @@ jobs:
|
|||
variant:
|
||||
- opendtufusion-de
|
||||
- opendtufusion-ethernet-de
|
||||
- opendtufusion-16MB-de
|
||||
- opendtufusion-ethernet-16MB-de
|
||||
- esp8266-de
|
||||
- esp8266-all-de
|
||||
- esp8266-prometheus-de
|
||||
|
|
|
@ -1,5 +1,8 @@
|
|||
# Development Changes
|
||||
|
||||
## 0.8.128 - 2024-07-02
|
||||
* add environments for 16MB flash size ESP32-S3 aka opendtufusion
|
||||
|
||||
## 0.8.127 - 2024-06-21
|
||||
* add grid file #1677
|
||||
* merge PR: Bugfix Inv delete not working with password protection #1678
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
//-------------------------------------
|
||||
#define VERSION_MAJOR 0
|
||||
#define VERSION_MINOR 8
|
||||
#define VERSION_PATCH 127
|
||||
#define VERSION_PATCH 128
|
||||
//-------------------------------------
|
||||
typedef struct {
|
||||
uint8_t ch;
|
||||
|
|
|
@ -353,3 +353,39 @@ build_flags = ${env:opendtufusion-ethernet.build_flags}
|
|||
-DLANG_DE
|
||||
monitor_filters =
|
||||
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