Update to version 3.9.6
This commit is contained in:
124
platformio.ini
124
platformio.ini
@@ -14,6 +14,7 @@ lib_dir = .
|
||||
; src_dir = examples/FlashResponse
|
||||
; src_dir = examples/HeaderManipulation
|
||||
; src_dir = examples/Json
|
||||
; src_dir = examples/LargeResponse
|
||||
; src_dir = examples/Logging
|
||||
; src_dir = examples/MessagePack
|
||||
; src_dir = examples/Middleware
|
||||
@@ -33,12 +34,15 @@ src_dir = examples/PerfTests
|
||||
; src_dir = examples/StaticFile
|
||||
; src_dir = examples/Templates
|
||||
; src_dir = examples/Upload
|
||||
; src_dir = examples/UploadFlash
|
||||
; src_dir = examples/URIMatcher
|
||||
; src_dir = examples/URIMatcherTest
|
||||
; src_dir = examples/WebSocket
|
||||
; src_dir = examples/WebSocketEasy
|
||||
|
||||
[env]
|
||||
framework = arduino
|
||||
platform = https://github.com/pioarduino/platform-espressif32/releases/download/55.03.30-2/platform-espressif32.zip
|
||||
platform = https://github.com/pioarduino/platform-espressif32/releases/download/55.03.36/platform-espressif32.zip
|
||||
board = esp32dev
|
||||
build_flags =
|
||||
-Og
|
||||
@@ -51,7 +55,14 @@ build_flags =
|
||||
-D CONFIG_ASYNC_TCP_QUEUE_SIZE=64
|
||||
-D CONFIG_ASYNC_TCP_RUNNING_CORE=1
|
||||
-D CONFIG_ASYNC_TCP_STACK_SIZE=4096
|
||||
; -D ASYNCWEBSERVER_REGEX=1
|
||||
; -D CONFIG_ASYNC_TCP_USE_WDT=0
|
||||
; -D CONFIG_ARDUHAL_LOG_COLORS
|
||||
; -D CORE_DEBUG_LEVEL=ARDUHAL_LOG_LEVEL_VERBOSE
|
||||
; -D USE_ESP_IDF_LOG=1
|
||||
; -D TAG=\"core\"
|
||||
; -D LOG_LOCAL_LEVEL=ESP_LOG_VERBOSE
|
||||
; -D ASYNCWEBSERVER_LOG_DEBUG
|
||||
upload_protocol = esptool
|
||||
monitor_speed = 115200
|
||||
monitor_filters = esp32_exception_decoder, log2file
|
||||
@@ -60,10 +71,14 @@ lib_compat_mode = strict
|
||||
lib_ldf_mode = chain
|
||||
lib_deps =
|
||||
bblanchon/ArduinoJson @ 7.4.2
|
||||
ESP32Async/AsyncTCP @ 3.4.7
|
||||
; bblanchon/ArduinoJson @ 6.21.5
|
||||
; bblanchon/ArduinoJson @ 5.13.4
|
||||
ESP32Async/AsyncTCP @ 3.4.10
|
||||
board_build.partitions = partitions-4MB.csv
|
||||
board_build.filesystem = littlefs
|
||||
|
||||
; PLATFORMS (ESP32, ESP8266, Raspberry, LibreTiny)
|
||||
|
||||
[env:arduino-2]
|
||||
platform = espressif32@6.12.0
|
||||
|
||||
@@ -71,26 +86,6 @@ platform = espressif32@6.12.0
|
||||
; board = esp32-p4
|
||||
; board = esp32-h2-devkitm-1
|
||||
|
||||
[env:arduino-rc]
|
||||
platform = https://github.com/pioarduino/platform-espressif32/releases/download/54.03.20-rc2/platform-espressif32.zip
|
||||
|
||||
[env:arduino-3-no-json]
|
||||
lib_deps =
|
||||
ESP32Async/AsyncTCP @ 3.4.7
|
||||
|
||||
[env:arduino-rc-asynctcp]
|
||||
lib_deps =
|
||||
https://github.com/ESP32Async/AsyncTCP
|
||||
|
||||
[env:arduino-3-no-chunk-inflight]
|
||||
build_flags = ${env.build_flags}
|
||||
-D ASYNCWEBSERVER_USE_CHUNK_INFLIGHT=0
|
||||
|
||||
[env:AsyncTCPSock]
|
||||
lib_deps =
|
||||
https://github.com/ESP32Async/AsyncTCPSock/archive/refs/tags/v1.0.3-dev.zip
|
||||
build_flags = ${env.build_flags}
|
||||
|
||||
[env:esp8266]
|
||||
platform = espressif8266
|
||||
; board = huzzah
|
||||
@@ -122,7 +117,42 @@ lib_deps =
|
||||
; (BK7231 already uses it)
|
||||
custom_versions.freertos = 9.0.0
|
||||
|
||||
; CI
|
||||
; SPECIFIC ENVS (for testing various configurations)
|
||||
|
||||
[env:arduino-2-esp-idf-log]
|
||||
platform = espressif32@6.12.0
|
||||
build_flags =
|
||||
${env.build_flags}
|
||||
-D USE_ESP_IDF_LOG=1
|
||||
-D TAG=\"core\"
|
||||
|
||||
[env:arduino-3-esp-idf-log]
|
||||
build_flags =
|
||||
${env.build_flags}
|
||||
-D USE_ESP_IDF_LOG=1
|
||||
|
||||
[env:no-json]
|
||||
lib_deps =
|
||||
ESP32Async/AsyncTCP @ 3.4.10
|
||||
|
||||
[env:latest-asynctcp]
|
||||
lib_deps =
|
||||
https://github.com/ESP32Async/AsyncTCP
|
||||
|
||||
[env:no-chunk-inflight]
|
||||
build_flags = ${env.build_flags}
|
||||
-D ASYNCWEBSERVER_USE_CHUNK_INFLIGHT=0
|
||||
|
||||
[env:regex]
|
||||
build_flags = ${env.build_flags}
|
||||
-D ASYNCWEBSERVER_REGEX=1
|
||||
|
||||
[env:AsyncTCPSock]
|
||||
lib_deps =
|
||||
https://github.com/ESP32Async/AsyncTCPSock/archive/refs/tags/v1.0.3-dev.zip
|
||||
build_flags = ${env.build_flags}
|
||||
|
||||
; PLATFORM CI (ESP32, ESP8266, Raspberry, LibreTiny)
|
||||
|
||||
[env:ci-arduino-2]
|
||||
platform = espressif32@6.12.0
|
||||
@@ -131,24 +161,6 @@ board = ${sysenv.PIO_BOARD}
|
||||
[env:ci-arduino-3]
|
||||
board = ${sysenv.PIO_BOARD}
|
||||
|
||||
[env:ci-arduino-rc]
|
||||
platform = https://github.com/pioarduino/platform-espressif32/releases/download/54.03.20-rc2/platform-espressif32.zip
|
||||
board = ${sysenv.PIO_BOARD}
|
||||
|
||||
[env:ci-arduino-3-no-json]
|
||||
board = ${sysenv.PIO_BOARD}
|
||||
lib_deps =
|
||||
ESP32Async/AsyncTCP @ 3.4.7
|
||||
|
||||
[env:ci-arduino-rc-asynctcp]
|
||||
lib_deps =
|
||||
https://github.com/ESP32Async/AsyncTCP
|
||||
|
||||
[env:ci-arduino-3-no-chunk-inflight]
|
||||
board = ${sysenv.PIO_BOARD}
|
||||
build_flags = ${env.build_flags}
|
||||
-D ASYNCWEBSERVER_USE_CHUNK_INFLIGHT=1
|
||||
|
||||
[env:ci-esp8266]
|
||||
platform = espressif8266
|
||||
board = ${sysenv.PIO_BOARD}
|
||||
@@ -177,3 +189,33 @@ lib_deps =
|
||||
DNSServer
|
||||
ESP32Async/AsyncTCP @ 3.4.3
|
||||
custom_versions.freertos = 9.0.0
|
||||
|
||||
; CI FOR SPECIFIC CONFIGURATIONS
|
||||
|
||||
[env:ci-arduino-2-esp-idf-log]
|
||||
platform = espressif32@6.12.0
|
||||
build_flags =
|
||||
${env.build_flags}
|
||||
-D USE_ESP_IDF_LOG=1
|
||||
-D TAG=\"core\"
|
||||
|
||||
[env:ci-arduino-3-esp-idf-log]
|
||||
build_flags =
|
||||
${env.build_flags}
|
||||
-D USE_ESP_IDF_LOG=1
|
||||
|
||||
[env:ci-no-json]
|
||||
lib_deps =
|
||||
ESP32Async/AsyncTCP @ 3.4.10
|
||||
|
||||
[env:ci-latest-asynctcp]
|
||||
lib_deps =
|
||||
https://github.com/ESP32Async/AsyncTCP
|
||||
|
||||
[env:ci-no-chunk-inflight]
|
||||
build_flags = ${env.build_flags}
|
||||
-D ASYNCWEBSERVER_USE_CHUNK_INFLIGHT=1
|
||||
|
||||
[env:ci-regex]
|
||||
build_flags = ${env.build_flags}
|
||||
-D ASYNCWEBSERVER_REGEX=1
|
||||
|
||||
Reference in New Issue
Block a user