-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathplatformio.ini
98 lines (86 loc) · 2.42 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
; 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
;
[teensy-base]
build_unflags =
-std=gnu++11
-std=gnu++14
build_flags =
-std=c++1z
-Wno-register
#[env:rfboard]
#platform = https://github.com/candykingdom/platform-candykingdomsam.git
#board = rfboard
#framework = arduino
#platform_packages =
#; Choose the correct package for your OS:
#; tool-bossac-candykingdom @ https://candykingdom.github.io/firefly-v2-board/tools/bossac_linux.tar.bz2
# tool-bossac-candykingdom @ https://candykingdom.github.io/firefly-v2-board/tools/bossac_osx.tar.bz2
#; tool-bossac-candykingdom @ https://candykingdom.github.io/firefly-v2-board/tools/bossac_windows.tar.bz2
#
#lib_deps =
# https://github.com/candykingdom/FastLED.git
#
#build_src_filter = -<*> +<firefly2>
[env:teensy]
extends = teensy-base
platform = [email protected]
board = teensy41
framework = arduino
build_flags =
${teensy-base.build_flags}
-DWS2812_PIN=31
lib_deps =
fastled/FastLED@^3.6.0
ademuri/smart-input-filter@^0.3.2
https://github.com/ademuri/Arduino-EasyTransfer.git#cleanup
mikem/VirtualWire@^1.27
Wire
https://github.com/tonton81/WDT_T4.git#1910b57
https://github.com/PaulStoffregen/Time.git
build_src_filter = -<*> +<teensy>
[env:teensy-model]
extends = teensy-base
platform = [email protected]
board = teensy41
framework = arduino
build_flags =
${teensy-base.build_flags}
-DWS2812_PIN=31
lib_deps =
fastled/FastLED@^3.6.0
ademuri/smart-input-filter@^0.3.2
https://github.com/ademuri/Arduino-EasyTransfer.git#cleanup
mikem/VirtualWire@^1.27
Wire
build_src_filter = -<*> +<teensy-model>
[env:interface]
extends = teensy-base
platform = [email protected]
board = teensy41
framework = arduino
lib_deps =
fastled/FastLED@^3.6.0
https://github.com/ademuri/smart-input-filter.git#a4e503c
https://github.com/ademuri/Arduino-EasyTransfer.git#cleanup
mikem/VirtualWire@^1.27
Wire
https://github.com/tonton81/WDT_T4.git#1910b57
build_src_filter = -<*> +<interface>
[env:mini]
platform = raspberrypi
board = pico
framework = arduino
build_flags =
${env.build_flags}
;-DWS2812_PIN=31
lib_deps =
fastled/FastLED@^3.6.0
build_src_filter = -<*> +<mini>