-
Notifications
You must be signed in to change notification settings - Fork 2
/
platformio.ini
109 lines (101 loc) · 2.4 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
; 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 = pro-micro-prototype
[common]
check_tool = clangtidy
check_flags = clangtidy: --checks=-*,cert-*,clang-analyzer-* --fix
[env:pro-micro-origional]
platform = atmelavr
board = sparkfun_promicro16
build_flags =
-D USB_HID
-D Led_TYPE=Led::COMMON_ANODE
-D RED_PIN=6
-D GREEN_PIN=9
-D BLUE_PIN=10
framework = arduino
extra_scripts = pre:muteme-origional.py
lib_deps =
lennarthennigs/Button2@^2.0.3
nicohood/HID-Project@^2.8.2
[env:pro-micro-prototype]
platform = atmelavr
board = sparkfun_promicro16
build_flags =
-D USB_HID
-D Led_TYPE=Led::COMMON_ANODE
-D RED_PIN=6
-D GREEN_PIN=9
-D BLUE_PIN=10
framework = arduino
extra_scripts = pre:muteme-prototype.py
lib_deps =
lennarthennigs/Button2@^2.0.3
nicohood/HID-Project@^2.8.2
[env:pro-micro-origional-debug]
platform = atmelavr
build_type = debug
board = sparkfun_promicro16
build_flags =
-D USB_SERIAL_HID
-D DEBUG
-D Led_TYPE=Led::COMMON_ANODE
-D RED_PIN=6
-D GREEN_PIN=9
-D BLUE_PIN=10
framework = arduino
extra_scripts = pre:muteme-origional.py
lib_deps =
lennarthennigs/Button2@^2.0.3
nicohood/HID-Project@^2.8.2
[env:pro-micro-prototype-debug]
platform = atmelavr
build_type = debug
board = sparkfun_promicro16
build_flags =
-D USB_SERIAL_HID
-D DEBUG
-D Led_TYPE=Led::COMMON_ANODE
-D RED_PIN=6
-D GREEN_PIN=9
-D BLUE_PIN=10
framework = arduino
extra_scripts = pre:muteme-prototype.py
lib_deps =
lennarthennigs/Button2@^2.0.3
nicohood/HID-Project@^2.8.2
[env:pro-micro-prototype-neopixel]
platform = atmelavr
build_type = debug
board = sparkfun_promicro16
build_flags =
-D USB_SERIAL_HID
-D NEOPIXEL
framework = arduino
extra_scripts = pre:muteme-prototype.py
lib_deps =
lennarthennigs/Button2@^2.2.4
nicohood/HID-Project@^2.8.4
makuna/NeoPixelBus@^2.7.7
[env:pro-micro-prototype-neopixel-debug]
platform = atmelavr
build_type = debug
board = sparkfun_promicro16
build_flags =
-D USB_SERIAL_HID
-D DEBUG
-D NEOPIXEL
framework = arduino
extra_scripts = pre:muteme-prototype.py
lib_deps =
lennarthennigs/Button2@^2.2.4
nicohood/HID-Project@^2.8.4
makuna/NeoPixelBus@^2.7.7