forked from Zer0-bit/gaggiuino
-
Notifications
You must be signed in to change notification settings - Fork 0
/
platformio.ini
224 lines (199 loc) · 5.38 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 = pcb-forced-predictive-scales-stlink
[env:opto-single-clock-stlink]
extends = env:blackpill-core
lib_deps =
${env:blackpill-core.lib_deps}
adafruit/MAX6675 [email protected]
build_flags =
${env:blackpill-core.build_flags}
-DSINGLE_HX711_CLOCK
[env:opto-dual-clock-stlink]
extends = env:blackpill-core
lib_deps =
${env:blackpill-core.lib_deps}
adafruit/MAX6675 [email protected]
build_flags =
${env:blackpill-core.build_flags}
[env:opto-single-clock-dfu]
extends = env:blackpill-core
lib_deps =
${env:blackpill-core.lib_deps}
adafruit/MAX6675 [email protected]
build_flags =
${env:blackpill-core.build_flags}
-DSINGLE_HX711_CLOCK
upload_protocol = dfu
[env:opto-dual-clock-dfu]
extends = env:blackpill-core
lib_deps =
${env:blackpill-core.lib_deps}
adafruit/MAX6675 [email protected]
upload_protocol = dfu
[env:relay-single-clock-stlink]
extends = env:blackpill-core
lib_deps =
${env:blackpill-core.lib_deps}
adafruit/MAX6675 [email protected]
build_flags =
${env:blackpill-core.build_flags}
-DLEGO_VALVE_RELAY
-DSINGLE_HX711_CLOCK
[env:relay-dual-clock-stlink]
extends = env:blackpill-core
lib_deps =
${env:blackpill-core.lib_deps}
adafruit/MAX6675 [email protected]
build_flags =
${env:blackpill-core.build_flags}
-DLEGO_VALVE_RELAY
[env:relay-single-clock-dfu]
extends = env:blackpill-core
lib_deps =
${env:blackpill-core.lib_deps}
adafruit/MAX6675 [email protected]
build_flags =
${env:blackpill-core.build_flags}
-DLEGO_VALVE_RELAY
-DSINGLE_HX711_CLOCK
upload_protocol = dfu
[env:relay-dual-clock-dfu]
extends = env:blackpill-core
lib_deps =
${env:blackpill-core.lib_deps}
adafruit/MAX6675 [email protected]
build_flags =
${env:blackpill-core.build_flags}
-DLEGO_VALVE_RELAY
upload_protocol = dfu
[env:pcb-single-clock-stlink]
extends = env:blackpill-core
lib_deps =
${env:blackpill-core.lib_deps}
adafruit/Adafruit MAX31855 [email protected]
build_flags =
${env:blackpill-core.build_flags}
-DSINGLE_BOARD
-DSINGLE_HX711_CLOCK
[env:pcb-dual-clock-stlink]
extends = env:blackpill-core
lib_deps =
${env:blackpill-core.lib_deps}
adafruit/Adafruit MAX31855 [email protected]
build_flags =
${env:blackpill-core.build_flags}
-DSINGLE_BOARD
[env:pcb-forced-predictive-scales-stlink]
extends = env:blackpill-core
lib_deps =
${env:blackpill-core.lib_deps}
adafruit/Adafruit MAX31855 [email protected]
build_type = debug
build_flags =
${env:blackpill-core.build_flags}
-DSINGLE_BOARD
-DFORCE_PREDICTIVE_SCALES
[env:scales-calibration-single-clock-stlink]
extends = env:blackpill-core
custom_src_dir = scales-calibration
build_flags =
-DSINGLE_HX711_CLOCK
-DENABLE_HWSERIAL2
-DPIN_SERIAL2_RX=PA3
-DPIN_SERIAL2_TX=PA2
[env:scales-calibration-single-clock-dfu]
extends = env:scales-calibration-single-clock-stlink
upload_protocol = dfu
[env:scales-calibration-dual-clock-stlink]
extends = env:blackpill-core
custom_src_dir = scales-calibration
build_flags =
-DENABLE_HWSERIAL2
-DPIN_SERIAL2_RX=PA3
-DPIN_SERIAL2_TX=PA2
[env:scales-calibration-dual-clock-dfu]
extends = env:scales-calibration-dual-clock-stlink
upload_protocol = dfu
[env:EVERYTHING-BELOW-NOT-FOR-FLASHING]
extends = env:scales-calibration-dual-clock-stlink
[env:blackpill-core]
framework = arduino
platform = [email protected]
board = blackpill_f411ce
extra_scripts =
pre:scripts/auto-version.py
pre:scripts/custom-src-dir.py
custom_src_dir = src
upload_protocol = stlink
debug_tool = stlink
monitor_speed = 115200
lib_compat_mode = strict
lib_deps =
robtillaart/[email protected]
khoih-prog/[email protected]
denyssene/[email protected]
https://github.com/Seithan/EasyNextionLibrary.git#4bd06b2a428da3cfd17f54dfd654ff2da6867ddb
https://github.com/banoz/PSM.Library.git#8f87ae0a67ace095c43bdbc661ffea72d4664b4c
https://github.com/banoz/HX711.git#cf81533c54abe259ef61d457d7db6eef94f6ea25
build_flags =
-DPIO_FRAMEWORK_ARDUINO_ENABLE_CDC
-DUSBCON
-DLOG_LEVEL=3
; -DDEBUG_ENABLED
; Uncomment to disable the steam boost feature
; -DDREAM_STEAM_DISABLED
-DPIO_FRAMEWORK_ARDUINO_STANDARD_LIB
-DENABLE_HWSERIAL2
-DPIN_SERIAL2_RX=PA3
-DPIN_SERIAL2_TX=PA2
-DBEAUTIFY_GRAPH
-Wdouble-promotion -Wall
-O0
build_unflags =
-Os
[env:blackpill-dfu]
extends = env:blackpill-core
lib_deps =
${env:blackpill-core.lib_deps}
adafruit/MAX6675 [email protected]
upload_protocol = dfu
build_flags =
${env:blackpill-core.build_flags}
-DSINGLE_HX711_CLOCK
[env:scales-calibration-dfu]
extends = env:scales-calibration-dual-clock-stlink
upload_protocol = dfu
[env:test]
platform = [email protected]
build_flags = -std=gnu++11 -include test/mock.h
lib_deps =
ArduinoFake
test_build_src = true
[env:webserver]
platform = https://github.com/platformio/platform-espressif32.git
board = lolin_s3
framework = arduino
monitor_speed = 115200
upload_protocol = esptool
board_build.filesystem = littlefs
custom_src_dir = webserver
build_src_filter = +<*> -<web-interface>
build_flags =
-DBOARD_HAS_PSRAM
-mfix-esp32-psram-cache-issue
lib_deps =
https://github.com/me-no-dev/AsyncTCP.git
https://github.com/me-no-dev/ESPAsyncWebServer.git
ArduinoJSON@^6.19.4
extra_scripts =
pre:scripts/custom-src-dir.py
webserver/replace_fs.py