-
Notifications
You must be signed in to change notification settings - Fork 201
/
Copy pathplatformio.ini
95 lines (83 loc) · 2.18 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
[platformio]
lib_dir = .
; src_dir = examples/AccessPoint
; src_dir = examples/Basic
src_dir = examples/Benchmark
; src_dir = examples/Chart
; src_dir = examples/Dynamic
; src_dir = examples/Interactive
[env]
framework = arduino
build_flags =
-Wall -Wextra
-D CONFIG_ARDUHAL_LOG_COLORS
-D CORE_DEBUG_LEVEL=ARDUHAL_LOG_LEVEL_DEBUG
lib_deps =
bblanchon/ArduinoJson@^7.3.0
ESP32Async/ESPAsyncWebServer@^3.7.1
upload_protocol = esptool
monitor_speed = 115200
monitor_filters = log2file
[env:esp32]
platform = https://github.com/pioarduino/platform-espressif32/releases/download/53.03.10-rc1/platform-espressif32.zip
board = esp32-s3-devkitc-1
monitor_filters = ${env.monitor_filters}, esp32_exception_decoder
[env:esp8266]
platform = espressif8266
board = huzzah
[env:picow]
platform = https://github.com/maxgerhardt/platform-raspberrypi.git
board = rpipicow
framework = arduino
board_build.core = earlephilhower
lib_deps =
ayushsharma82/RPAsyncTCP@^1.3.0
${env.lib_deps}
lib_ignore =
lwIP_ESPHost
[env:pico2w]
platform = https://github.com/maxgerhardt/platform-raspberrypi.git
board = rpipico2w
framework = arduino
board_build.core = earlephilhower
lib_deps =
ayushsharma82/RPAsyncTCP@^1.3.0
${env.lib_deps}
lib_ignore =
lwIP_ESPHost
; ------------
; CI Workflows
; ------------
[env:ci-esp32]
platform = https://github.com/pioarduino/platform-espressif32/releases/download/53.03.11/platform-espressif32.zip
board = ${sysenv.PIO_BOARD}
lib_deps =
ESP32Async/AsyncTCP@^3.3.5
${env.lib_deps}
monitor_filters = ${env.monitor_filters}, esp32_exception_decoder
[env:ci-esp8266]
platform = espressif8266
board = ${sysenv.PIO_BOARD}
lib_deps =
ESP32Async/ESPAsyncTCP@^2.0.0
${env.lib_deps}
[env:ci-rp2040]
platform = https://github.com/maxgerhardt/platform-raspberrypi.git
board = rpipicow
framework = arduino
board_build.core = earlephilhower
lib_deps =
ayushsharma82/RPAsyncTCP@^1.3.0
${env.lib_deps}
lib_ignore =
lwIP_ESPHost
[env:ci-rp2350]
platform = https://github.com/maxgerhardt/platform-raspberrypi.git
board = rpipico2w
framework = arduino
board_build.core = earlephilhower
lib_deps =
ayushsharma82/RPAsyncTCP@^1.3.0
${env.lib_deps}
lib_ignore =
lwIP_ESPHost