ESPAsyncWebServer/platformio.ini

81 lines
2.4 KiB
INI
Raw Normal View History

[env]
2024-02-06 17:39:53 +01:00
framework = arduino
build_flags =
-Wall -Wextra
-D CONFIG_ARDUHAL_LOG_COLORS
2024-05-30 08:41:06 +02:00
-D CORE_DEBUG_LEVEL=ARDUHAL_LOG_LEVEL_VERBOSE
2024-07-18 17:31:53 +02:00
-D CONFIG_ASYNC_TCP_MAX_ACK_TIME=3000
-D CONFIG_ASYNC_TCP_PRIORITY=10
-D CONFIG_ASYNC_TCP_QUEUE_SIZE=128
-D CONFIG_ASYNC_TCP_RUNNING_CORE=1
-D CONFIG_ASYNC_TCP_STACK_SIZE=4096
upload_protocol = esptool
monitor_speed = 115200
monitor_filters = esp32_exception_decoder, log2file
[platformio]
lib_dir = .
2024-07-02 20:06:33 +02:00
; src_dir = examples/CaptivePortal
2024-07-30 13:52:59 +02:00
src_dir = examples/SimpleServer
2024-07-18 17:31:53 +02:00
; src_dir = examples/StreamFiles
2024-06-03 16:42:40 +02:00
; src_dir = examples/Filters
2024-06-06 10:17:05 +02:00
; src_dir = examples/Draft
2024-07-30 13:52:59 +02:00
; src_dir = examples/issues/Issue14
2024-05-30 08:41:06 +02:00
[env:arduino]
platform = espressif32
board = esp32dev
2024-07-02 20:06:33 +02:00
lib_deps =
bblanchon/ArduinoJson @ 7.1.0
2024-07-30 13:52:59 +02:00
mathieucarbou/AsyncTCP @ 3.2.4
2024-05-30 08:41:06 +02:00
[env:arduino-2]
platform = espressif32@6.7.0
board = esp32dev
2024-07-02 20:06:33 +02:00
lib_deps =
bblanchon/ArduinoJson @ 7.1.0
2024-07-30 13:52:59 +02:00
mathieucarbou/AsyncTCP @ 3.2.4
2024-05-30 08:41:06 +02:00
[env:arduino-3]
platform = espressif32
platform_packages=
2024-07-18 17:31:53 +02:00
platformio/framework-arduinoespressif32 @ https://github.com/espressif/arduino-esp32.git#3.0.3
platformio/framework-arduinoespressif32-libs @ https://github.com/espressif/arduino-esp32/releases/download/3.0.3/esp32-arduino-libs-3.0.3.zip
board = esp32dev
2024-07-02 20:06:33 +02:00
lib_deps =
bblanchon/ArduinoJson @ 7.1.0
2024-07-30 13:52:59 +02:00
mathieucarbou/AsyncTCP @ 3.2.4
2024-02-06 17:39:53 +01:00
[env:esp8266]
platform = espressif8266
board = huzzah
lib_deps =
2024-07-02 20:06:33 +02:00
bblanchon/ArduinoJson @ 7.1.0
2024-02-06 17:39:53 +01:00
esphome/ESPAsyncTCP-esphome @ 2.0.0
2024-07-02 20:06:33 +02:00
; PlatformIO support for Raspberry Pi Pico is not official
; https://github.com/platformio/platform-raspberrypi/pull/36
; https://github.com/earlephilhower/arduino-pico/blob/master/docs/platformio.rst
; board settings: https://github.com/earlephilhower/arduino-pico/blob/master/tools/json/rpipico.json
[env:rpipicow]
upload_protocol = picotool
platform = https://github.com/maxgerhardt/platform-raspberrypi.git
board = rpipicow
lib_deps =
bblanchon/ArduinoJson @ 7.1.0
khoih-prog/AsyncTCP_RP2040W @ 1.2.0
2024-07-30 13:52:59 +02:00
[env:pioarduino-esp32dev]
platform = https://github.com/pioarduino/platform-espressif32/releases/download/51.03.03/platform-espressif32.zip
board = esp32dev
lib_deps =
bblanchon/ArduinoJson @ 7.1.0
mathieucarbou/AsyncTCP @ 3.2.3
[env:pioarduino-c6]
platform = https://github.com/pioarduino/platform-espressif32/releases/download/51.03.03/platform-espressif32.zip
board = esp32-c6-devkitc-1
lib_deps =
bblanchon/ArduinoJson @ 7.1.0
mathieucarbou/AsyncTCP @ 3.2.4