forked from ayushsharma82/NetWizard
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplatformio.ini
More file actions
99 lines (89 loc) · 2.26 KB
/
platformio.ini
File metadata and controls
99 lines (89 loc) · 2.26 KB
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
[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.1
ESP32Async/ESPAsyncWebServer@^3.7.2
upload_protocol = esptool
monitor_speed = 115200
monitor_filters = esp32_exception_decoder, log2file
[platformio]
lib_dir = .
src_dir = examples/Demo
; src_dir = examples/AsyncDemo
[env:esp32]
build_flags = ${env.build_flags}
platform = https://github.com/pioarduino/platform-espressif32/releases/download/53.03.11/platform-espressif32.zip
board = esp32-s3-devkitc-1
lib_deps =
ESP32Async/AsyncTCP@^3.3.5
${env.lib_deps}
[env:esp8266]
platform = espressif8266
board = huzzah
lib_deps =
vshymanskyy/Preferences@^2.1.0
ESP32Async/ESPAsyncTCP@^2.0.0
${env.lib_deps}
[env:picow]
platform = https://github.com/maxgerhardt/platform-raspberrypi.git
board = rpipicow
framework = arduino
board_build.core = earlephilhower
lib_deps =
vshymanskyy/Preferences@^2.1.0
ayushsharma82/RPAsyncTCP@^1.3.1
${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 =
vshymanskyy/Preferences@^2.1.0
ayushsharma82/RPAsyncTCP@^1.3.1
${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}
[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 =
vshymanskyy/Preferences@^2.1.0
ayushsharma82/RPAsyncTCP@^1.3.1
${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 =
vshymanskyy/Preferences@^2.1.0
ayushsharma82/RPAsyncTCP@^1.3.1
${env.lib_deps}
lib_ignore =
lwIP_ESPHost