forked from Zer0-bit/gaggiuino
-
Notifications
You must be signed in to change notification settings - Fork 0
/
platformio.ini
252 lines (223 loc) · 5.72 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
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
; 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]
extra_configs = extra_defines.ini
[extra]
build_flags =
;placeholder values, create a untracked etra_defines.ini file externally
;so you can keep your custom setup defined by default on every pull
; -DDREAM_STEAM_DISABLED
; -DSINGLE_HX711
[env]
check_tool = clangtidy, cppcheck
check_skip_packages = yes
check_flags =
clangtidy: --checks=-*,cert-*,clang-analyzer-* --fix
cppcheck: --enable=all --std=c++11 --suppress=*:*/.pio/* --suppress=*:*/lib/* --suppress=missingIncludeSystem --suppress=unmatchedSuppression --suppress=missingInclude --suppress=unusedFunction
platform_packages = [email protected]
[env:gaggia-lego-stlink]
extends = blackpill-core
lib_deps =
${blackpill-core.lib_deps}
adafruit/MAX6675 [email protected]
build_flags =
${blackpill-core.build_flags}
-DLEGO_VALVE_RELAY
[env:gaggia-lego-dfu]
extends = blackpill-core
lib_deps =
${blackpill-core.lib_deps}
adafruit/MAX6675 [email protected]
build_flags =
${blackpill-core.build_flags}
-DLEGO_VALVE_RELAY
upload_protocol = dfu
[env:non-gaggia-lego-stlink]
extends = blackpill-core
lib_deps =
${blackpill-core.lib_deps}
adafruit/MAX6675 [email protected]
build_flags =
${blackpill-core.build_flags}
-DLEGO_VALVE_RELAY
-DINDEPENDENT_DIMMER
[env:non-gaggia-lego-dfu]
extends = blackpill-core
lib_deps =
${blackpill-core.lib_deps}
adafruit/MAX6675 [email protected]
build_flags =
${blackpill-core.build_flags}
-DLEGO_VALVE_RELAY
-DINDEPENDENT_DIMMER
upload_protocol = dfu
[env:all-pcb-stlink]
extends = blackpill-core
lib_deps =
${blackpill-core.lib_deps}
adafruit/Adafruit MAX31855 [email protected]
build_flags =
${blackpill-core.build_flags}
-DSINGLE_BOARD
[env:all-pcb-forced-predictive-stlink]
extends = blackpill-core
lib_deps =
${blackpill-core.lib_deps}
adafruit/Adafruit MAX31855 [email protected]
build_type = debug
build_flags =
${blackpill-core.build_flags}
-DSINGLE_BOARD
-DFORCE_PREDICTIVE_SCALES=1
[env:scales-calibration-stlink]
extends = blackpill-core
custom_src_dir = scales-calibration
build_flags =
${blackpill-core.build_flags}
;if using Vas' DUAL HX711 Board custom file needs to be defined
${extra.build_flags}
[env:scales-calibration-dfu]
extends = env:scales-calibration-stlink
upload_protocol = dfu
[env:EVERYTHING-BELOW-NOT-FOR-FLASHING]
extends = env:scales-calibration-stlink
[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]
powerbroker2/SerialTransfer@^3.1.3
https://github.com/denyssene/SimpleKalmanFilter.git
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
;if using a bigger boilr machine like Silvia set -DDREAM_STEAM_DISABLED in the extra_defines.ini
${extra.build_flags}
-DPIO_FRAMEWORK_ARDUINO_STANDARD_LIB
-DENABLE_HWSERIAL2
-DPIN_SERIAL2_RX=PA3
-DPIN_SERIAL2_TX=PA2
-DPIN_SERIAL1_RX=PA10
-DPIN_SERIAL1_TX=PA9
-DSERIAL_TX_BUFFER_SIZE=256
-DSERIAL_RX_BUFFER_SIZE=256
-DBEAUTIFY_GRAPH
-O0
build_unflags =
-Os
build_src_flags =
-Wdouble-promotion -Wall
check_patterns =
src
[env:test]
platform = native
build_flags = -std=gnu++17
lib_deps =
mocks
ArduinoFake
powerbroker2/SerialTransfer@^3.1.3
lib_extra_dirs =
test-lib
lib_compat_mode = off
[env:webserver]
platform = https://github.com/platformio/platform-espressif32.git
; board = lolin_s3
board = esp32dev
framework = arduino
monitor_speed = 115200
upload_protocol = esptool
board_build.filesystem = littlefs
custom_src_dir = webserver
build_src_filter = +<*> -<web-interface>
build_flags =
-std=gnu++17
-DBOARD_HAS_PSRAM
-mfix-esp32-psram-cache-issue
-DRX1=16 ; for ESP32DEV
-DTX1=17 ; for ESP32DEV
; -DRX1=18
; -DTX1=17
check_patterns =
webserver/src
lib_deps =
https://github.com/me-no-dev/AsyncTCP.git
https://github.com/me-no-dev/ESPAsyncWebServer.git
ArduinoJSON@^6.19.4
powerbroker2/SerialTransfer@^3.1.3
Wire
extra_scripts =
pre:scripts/custom-src-dir.py
webserver/replace_fs.py
[env:uart-esp]
framework = arduino
platform = https://github.com/platformio/platform-espressif32.git
board = esp32dev
monitor_speed = 115200
upload_protocol = esptool
board_build.filesystem = littlefs
custom_src_dir = uart-esp
lib_deps =
powerbroker2/SerialTransfer@^3.1.3
Wire
extra_scripts =
pre:scripts/custom-src-dir.py
webserver/replace_fs.py
build_flags =
-std=gnu++17
-DRX1=16
-DTX1=17
build_unflags =
-std=gnu++11
check_patterns =
uart-esp
[env:uart-stm]
framework = arduino
platform = [email protected]
board = blackpill_f411ce
monitor_speed = 115200
upload_protocol = dfu
custom_src_dir = uart-stm
lib_deps =
powerbroker2/SerialTransfer@^3.1.3
Wire
extra_scripts =
pre:scripts/custom-src-dir.py
build_flags =
-DPIO_FRAMEWORK_ARDUINO_ENABLE_CDC
-DUSBCON
; -DPIN_SERIAL1_RX=PB3
; -DPIN_SERIAL1_TX=PA15
-DPIN_SERIAL1_RX=PA10
-DPIN_SERIAL1_TX=PA9
; -DPIN_SERIAL1_RX=PB7
; -DPIN_SERIAL1_TX=PB6
-DSERIAL_TX_BUFFER_SIZE=256
-DSERIAL_RX_BUFFER_SIZE=256
-Wdouble-promotion -Wall
-O0
build_unflags =
-Os
check_patterns =
uart-stm