41 lines
1.1 KiB
INI
41 lines
1.1 KiB
INI
; PlatformIO Project Configuration File
|
|
;
|
|
; Build options: build flags, source filter
|
|
; Upload options: custom upload port, speed and extra flags
|
|
; Library options: dependencies, extra library storages
|
|
; Advanced options: extra scripting
|
|
;
|
|
; Please visit documentation for the other options and examples
|
|
; https://docs.platformio.org/page/projectconf.html
|
|
|
|
[env]
|
|
platform = espressif32
|
|
framework = arduino
|
|
; board = esp32dev
|
|
board = esp32-s3-devkitc-1
|
|
upload_port = /dev/ttyACM0
|
|
monitor_port = /dev/ttyACM1
|
|
monitor_speed = 115200
|
|
monitor_filters = esp32_exception_decoder
|
|
|
|
lib_compat_mode = strict
|
|
lib_ldf_mode = chain
|
|
lib_deps =
|
|
; mathieucarbou/AsyncTCP @ 3.2.10
|
|
https://github.com/mathieucarbou/AsyncTCPSock/archive/refs/tags/v1.0.3-dev.zip
|
|
mathieucarbou/ESPAsyncWebServer @ 3.3.16
|
|
bblanchon/ArduinoJson
|
|
lib_ignore =
|
|
AsyncTCP
|
|
mathieucarbou/AsyncTCP
|
|
|
|
board_build.filesystem = littlefs
|
|
build_flags =
|
|
-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
|
|
-D WS_MAX_QUEUED_MESSAGES=128
|
|
|
|
[env:default] |