-
Notifications
You must be signed in to change notification settings - Fork 1
/
platformio.ini
57 lines (50 loc) · 1.23 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
[platformio]
;src_dir = examples/ClusterController
;src_dir = examples/TestClusterPower
;src_dir = examples/TestCluster
src_dir = examples/TestTone
lib_dir = src
default_envs = pico
[common_env_data]
build_flags =
-Isrc
lib_deps_builtin =
SPI
lib_deps_external =
https://github.com/janelia-arduino/TMC51X0.git
lib_deps_local =
src/ClusterController
[env]
lib_ldf_mode = off
build_flags =
${common_env_data.build_flags}
monitor_echo = yes
monitor_eol = LF
monitor_filters =
send_on_enter
colorize
monitor_speed = 115200
lib_deps =
${common_env_data.lib_deps_builtin}
${common_env_data.lib_deps_external}
${common_env_data.lib_deps_local}
[env:teensy40]
framework = arduino
platform = teensy
board = teensy40
upload_protocol = teensy-cli
[env:pico]
platform = https://github.com/maxgerhardt/platform-raspberrypi.git
board = rpipico
framework = arduino
board_build.core = earlephilhower
upload_protocol = picotool
[env:feather]
platform = https://github.com/maxgerhardt/platform-raspberrypi.git
board = adafruit_feather
framework = arduino
board_build.core = earlephilhower
upload_protocol = picotool
; pio run -e teensy40 --target upload --upload-port /dev/ttyACM0
; pio run -e teensy40 -t envdump
; pio device monitor