forked from Zer0-bit/gaggiuino
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplatformio.ini
219 lines (192 loc) · 4.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
; 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-stlink]
extends = blackpill-core
lib_deps =
${blackpill-core.lib_deps}
adafruit/MAX6675 library@1.1.0
build_flags =
${blackpill-core.build_flags}
[env:opto-dfu]
extends = blackpill-core
lib_deps =
${blackpill-core.lib_deps}
adafruit/MAX6675 library@1.1.0
build_flags =
${blackpill-core.build_flags}
upload_protocol = dfu
[env:relay-stlink]
extends = blackpill-core
lib_deps =
${blackpill-core.lib_deps}
adafruit/MAX6675 library@1.1.0
build_flags =
${blackpill-core.build_flags}
-DLEGO_VALVE_RELAY
[env:relay-dfu]
extends = blackpill-core
lib_deps =
${blackpill-core.lib_deps}
adafruit/MAX6675 library@1.1.0
build_flags =
${blackpill-core.build_flags}
-DLEGO_VALVE_RELAY
upload_protocol = dfu
[env:pcb-stlink]
extends = blackpill-core
lib_deps =
${blackpill-core.lib_deps}
adafruit/Adafruit MAX31855 library@1.3.0
build_flags =
${blackpill-core.build_flags}
-DSINGLE_BOARD
[env:pcb-forced-predictive-scales-stlink]
extends = blackpill-core
lib_deps =
${blackpill-core.lib_deps}
adafruit/Adafruit MAX31855 library@1.3.0
build_type = debug
build_flags =
${blackpill-core.build_flags}
-DSINGLE_BOARD
-DFORCE_PREDICTIVE_SCALES
[env:scales-calibration-stlink]
extends = blackpill-core
custom_src_dir = scales-calibration
build_flags =
-DENABLE_HWSERIAL2
-DPIN_SERIAL2_RX=PA3
-DPIN_SERIAL2_TX=PA2
; Uncomment if using Vas' DUAL HX711 Board
; -DSINGLE_HX711_BOARD
[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 = ststm32@15.4.1
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/ADS1X15@0.3.7
khoih-prog/FlashStorage_STM32@1.2.0
denyssene/SimpleKalmanFilter@0.1.0
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
; Uncomment if using Vas' DUAL HX711 Board
; -DSINGLE_HX711_BOARD
-DPIO_FRAMEWORK_ARDUINO_STANDARD_LIB
-DENABLE_HWSERIAL2
-DPIN_SERIAL2_RX=PA3
-DPIN_SERIAL2_TX=PA2
-DBEAUTIFY_GRAPH
-Wdouble-promotion -Wall
-O0
build_unflags =
-Os
lib_extra_dirs =
src_common
[env:test]
platform = native@1.2.1
build_flags = -std=gnu++11 -include test/mock.h
lib_deps =
ArduinoFake
test_build_src = true
lib_extra_dirs =
src_common
[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 =
-std=gnu++17
-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
Wire
extra_scripts =
pre:scripts/custom-src-dir.py
webserver/replace_fs.py
lib_extra_dirs =
src_common
[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
lib_extra_dirs =
src_common
build_flags =
-std=gnu++17
-DSERIAL_TX_BUFFER_SIZE=256
-DSERIAL_RX_BUFFER_SIZE=256
-DRX1=16
-DTX1=17
build_unflags =
-std=gnu++11
[env:uart-stm]
framework = arduino
platform = ststm32@15.4.1
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=PB7
-DPIN_SERIAL1_TX=PB6
-DSERIAL_TX_BUFFER_SIZE=256
-DSERIAL_RX_BUFFER_SIZE=256
-Wdouble-promotion -Wall
-O0
build_unflags =
-Os