-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathplatformio.ini
102 lines (86 loc) · 2.99 KB
/
platformio.ini
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
[platformio]
default_envs = arduino-2, arduino-3, esp8266
lib_dir = .
[env]
framework = arduino
platform = https://github.com/pioarduino/platform-espressif32/releases/download/53.03.13/platform-espressif32.zip
board = esp32dev
build_flags =
-Og
-Wall -Wextra
-Wno-unused-parameter
; -D CONFIG_ARDUHAL_LOG_COLORS
-D CORE_DEBUG_LEVEL=ARDUHAL_LOG_LEVEL_VERBOSE
-D CONFIG_ASYNC_TCP_MAX_ACK_TIME=5000
-D CONFIG_ASYNC_TCP_PRIORITY=10
-D CONFIG_ASYNC_TCP_QUEUE_SIZE=64
-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
; monitor_filters = esp8266_exception_decoder, log2file
lib_compat_mode = strict
lib_ldf_mode = chain
lib_deps =
bblanchon/ArduinoJson @ 7.3.1
ESP32Async/AsyncTCP @ 3.3.7
ESP32Async/ESPAsyncWebServer @ 3.7.3
https://github.com/cotestatnt/Arduino-MySQL.git
https://github.com/OSSLibraries/Arduino_MFRC522v2.git
board_build.partitions = partitions-4MB.csv
board_build.filesystem = littlefs
[env:arduino-2]
platform = [email protected]
[env:arduino-3]
[env:arduino-3-latest]
platform = https://github.com/pioarduino/platform-espressif32/releases/download/54.03.20-rc1/platform-espressif32.zip
[env:arduino-3-latest-asynctcp]
lib_deps =
https://github.com/ESP32Async/AsyncTCP
https://github.com/ESP32Async/ESPAsyncWebServer
https://github.com/cotestatnt/Arduino-MySQL
https://github.com/OSSLibraries/Arduino_MFRC522v2
[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
board = d1_mini
lib_deps =
bblanchon/ArduinoJson @ 7.3.1
ESP32Async/ESPAsyncTCP @ 2.0.0
ESP32Async/ESPAsyncWebServer @ 3.7.3
https://github.com/cotestatnt/Arduino-MySQL.git
https://github.com/OSSLibraries/Arduino_MFRC522v2.git
[env:ci-arduino-2]
platform = [email protected]
board = ${sysenv.PIO_BOARD}
[env:ci-arduino-3]
board = ${sysenv.PIO_BOARD}
[env:ci-arduino-3-latest]
platform = https://github.com/pioarduino/platform-espressif32/releases/download/54.03.20-rc1/platform-espressif32.zip
board = ${sysenv.PIO_BOARD}
[env:ci-arduino-3-latest-asynctcp]
lib_deps =
bblanchon/ArduinoJson @ 7.3.1
https://github.com/ESP32Async/AsyncTCP
https://github.com/ESP32Async/ESPAsyncWebServer
https://github.com/cotestatnt/Arduino-MySQL.git
https://github.com/OSSLibraries/Arduino_MFRC522v2.git
[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}
lib_deps =
bblanchon/ArduinoJson @ 7.3.1
ESP32Async/ESPAsyncTCP @ 2.0.0
ESP32Async/ESPAsyncWebServer @ 3.7.3