-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathplatformio.ini
224 lines (210 loc) · 6.07 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
; 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
[platformio]
default_envs =
wifi
wifi-debug
wifi-APWIKOGER
wifi-APWIKOGER-debug
ethernet-DTWONDER
ethernet-DTWONDER-debug
ethernet-DTWONDER-16M
ethernet-DTWONDER-16M-debug
ethernet-LILYGO
ethernet-LILYGO-debug
[env]
check_skip_packages = yes
[common]
platform = espressif32
f_cpu = 240000000L
framework = arduino
board = esp32dev
flash_mode = dio
build_flags =
-DCONFIG_FREERTOS_ENABLE_BACKWARD_COMPATIBILITY
build_src_flags =
upload_speed = 921600
monitor_speed = 115200
partitions = esp32-rfid.csv
lib_deps =
https://github.com/pvtex/ArduinoJson
https://github.com/pvtex/AsyncTCP
https://github.com/pvtex/ESPAsyncWebServer
https://github.com/pvtex/async-mqtt-client
https://github.com/pvtex/rfid
https://github.com/pvtex/Wiegand-NG-Multi-Bit-Wiegand-Library-for-Arduino
https://github.com/pvtex/Time
https://github.com/pvtex/Bounce2
lib_ignore =
[env:wifi]
board_build.f_cpu = ${common.f_cpu}
platform = ${common.platform}
framework = ${common.framework}
board = ${common.board}
lib_deps = ${common.lib_deps}
extra_scripts = scripts/WIFIdeploy.py
build_flags =
${common.build_flags}
-DGENERIC
build_src_flags = ${common.build_src_flags}
upload_speed = ${common.upload_speed}
monitor_speed = ${common.monitor_speed}
board_build.flash_mode = ${common.flash_mode}
board_build.partitions = ${common.partitions}
[env:wifi-debug]
board_build.f_cpu = ${common.f_cpu}
platform = ${common.platform}
framework = ${common.framework}
board = ${common.board}
lib_deps = ${common.lib_deps}
build_flags =
${common.build_flags}
-DGENERIC
-DDEBUG
build_src_flags = ${common.build_src_flags}
extra_scripts = scripts/WIFIDBGdeploy.py
upload_speed = ${common.upload_speed}
monitor_speed = ${common.monitor_speed}
board_build.flash_mode = ${common.flash_mode}
board_build.partitions = ${common.partitions}
[env:wifi-APWIKOGER]
board_build.f_cpu = ${common.f_cpu}
platform = ${common.platform}
framework = ${common.framework}
board = ${common.board}
lib_deps = ${common.lib_deps}
extra_scripts = scripts/WIFIAPWdeploy.py
build_flags =
${common.build_flags}
-DAPWIKOGER
build_src_flags = ${common.build_src_flags}
upload_speed = ${common.upload_speed}
monitor_speed = ${common.monitor_speed}
board_build.flash_mode = ${common.flash_mode}
board_build.partitions = ${common.partitions}
[env:wifi-APWIKOGER-debug]
board_build.f_cpu = ${common.f_cpu}
platform = ${common.platform}
framework = ${common.framework}
board = ${common.board}
lib_deps = ${common.lib_deps}
build_flags =
${common.build_flags}
-DAPWIKOGER
-DDEBUG
build_src_flags = ${common.build_src_flags}
extra_scripts = scripts/WIFIAPWDBGdeploy.py
upload_speed = ${common.upload_speed}
monitor_speed = ${common.monitor_speed}
board_build.flash_mode = ${common.flash_mode}
board_build.partitions = ${common.partitions}
[env:ethernet-DTWONDER]
board_build.f_cpu = ${common.f_cpu}
platform = ${common.platform}
framework = ${common.framework}
board = ${common.board}
lib_deps = ${common.lib_deps}
extra_scripts = scripts/ETHDTWdeploy.py
build_flags =
${common.build_flags}
-DETHERNET
-DDTWONDER
build_src_flags = ${common.build_src_flags}
upload_speed = ${common.upload_speed}
monitor_speed = ${common.monitor_speed}
board_build.flash_mode = ${common.flash_mode}
board_build.partitions = ${common.partitions}
[env:ethernet-DTWONDER-debug]b
board_build.f_cpu = ${common.f_cpu}
platform = ${common.platform}
framework = ${common.framework}
board = ${common.board}
lib_deps = ${common.lib_deps}
extra_scripts = scripts/ETHDTWDBGdeploy.py
build_flags =
${common.build_flags}
-DETHERNET
-DETHDEBUG
-DDTWONDER
-DDEBUG
build_src_flags = ${common.build_src_flags}
upload_speed = ${common.upload_speed}
monitor_speed = ${common.monitor_speed}
board_build.flash_mode = ${common.flash_mode}
board_build.partitions = ${common.partitions}
[env:ethernet-DTWONDER-16M]
board_build.f_cpu = ${common.f_cpu}
platform = ${common.platform}
framework = ${common.framework}
board = ${common.board}
lib_deps = ${common.lib_deps}
extra_scripts = scripts/ETHDTW16deploy.py
build_flags =
${common.build_flags}
-DETHERNET
-DDTWONDER
build_src_flags = ${common.build_src_flags}
upload_speed = ${common.upload_speed}
monitor_speed = ${common.monitor_speed}
board_build.flash_mode = ${common.flash_mode}
board_build.partitions = default_16MB.csv
[env:ethernet-DTWONDER-16M-debug]
board_build.f_cpu = ${common.f_cpu}
platform = ${common.platform}
framework = ${common.framework}
board = ${common.board}
lib_deps = ${common.lib_deps}
extra_scripts = scripts/ETHDTW16DBGdeploy.py
build_flags =
${common.build_flags}
-DETHERNET
-DETHDEBUG
-DDTWONDER
-DDEBUG
build_src_flags = ${common.build_src_flags}
upload_speed = ${common.upload_speed}
monitor_speed = ${common.monitor_speed}
board_build.flash_mode = ${common.flash_mode}
board_build.partitions = default_16MB.csv
[env:ethernet-LILYGO]
board_build.f_cpu = ${common.f_cpu}
platform = ${common.platform}
framework = ${common.framework}
board = ${common.board}
lib_deps = ${common.lib_deps}
extra_scripts = scripts/ETHLILdeploy.py
build_flags =
${common.build_flags}
-DETHERNET
-DLILYGO
build_src_flags = ${common.build_src_flags}
upload_speed = ${common.upload_speed}
monitor_speed = ${common.monitor_speed}
board_build.flash_mode = ${common.flash_mode}
board_build.partitions = default_16MB.csv
[env:ethernet-LILYGO-debug]
board_build.f_cpu = ${common.f_cpu}
platform = ${common.platform}
framework = ${common.framework}
board = ${common.board}
lib_deps = ${common.lib_deps}
extra_scripts = scripts/ETHLILDBGdeploy.py
build_flags =
${common.build_flags}
-DETHERNET
-DETHDEBUG
-DLILYGO
-DDEBUG
-fexceptions
build_src_flags = ${common.build_src_flags}
upload_speed = ${common.upload_speed}
monitor_speed = ${common.monitor_speed}
board_build.flash_mode = ${common.flash_mode}
board_build.partitions = default_16MB.csv