-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathplatformio.ini
More file actions
66 lines (59 loc) · 1.58 KB
/
platformio.ini
File metadata and controls
66 lines (59 loc) · 1.58 KB
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
; 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 = master-vst, slave-vst
[env:keypad-test]
platform = atmelavr
framework = arduino
board = nanoatmega168
monitor_speed = 9600
src_filter = +<keypad-test> -<master> -<slave>
upload_port = /dev/ttyUSB0
[env:master-vst]
platform = atmelavr
framework = arduino
board = uno
src_filter = +<master> -<slave>
upload_port = /dev/ttyACM0
build_flags = -DNSHUTTERS=2 -DANALOG_KEYPAD
[env:slave-vst]
platform = atmelavr
framework = arduino
board = uno
src_filter = -<master> +<slave>
lib_deps = kroimon/SerialCommand@0.0.0-alpha+sha.76ebd2d60e
upload_port = /dev/ttyACM0
build_flags = -DANALOG_KEYPAD
[env:slave-ictea]
platform = atmelavr
framework = arduino
board = nanoatmega168
monitor_speed = 9600
src_filter = -<master> +<slave>
lib_deps = kroimon/SerialCommand@0.0.0-alpha+sha.76ebd2d60e
upload_port = /dev/ttyUSB0
build_flags = -DNSHUTTERS=1
[env:master-deva]
platform = atmelavr
framework = arduino
board = uno
src_filter = +<master> -<slave>
upload_port = /dev/ttyUSB0
build_flags = -DAZ_TIMEOUT=120000
[env:master-carda]
platform = atmelavr
framework = arduino
board = diecimilaatmega328
monitor_speed = 19200
src_filter = +<master> -<slave>
upload_port = /dev/ttyUSB0
build_flags =
-DMONSTER_SHIELD
-DENCODER_DIV=4