-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathplatformio.ini
154 lines (135 loc) · 2.95 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
#
# Project Configuration File
#
# A detailed documentation with the EXAMPLES is located here:
# http://docs.platformio.org/en/latest/projectconf.html
#
# A sign `#` at the beginning of the line indicates a comment
# Comment lines are ignored.
# Simple and base environment
# [env:mybaseenv]
# platform = %INSTALLED_PLATFORM_NAME_HERE%
# framework =
# board =
#
# Automatic targets - enable auto-uploading
# targets = upload
[platformio]
default_envs =
; featherm0
; d1_mini
; huzzah
; nodemcu
; esp32doit-devkit-v1
lolin32
; due
; mega2560
; uno
; nucleo_f411re
[common]
build_flags_ext =
lib_deps_builtin =
SPI
Wire
lib_deps_external =
dniklaus/spin-timer@>=3.0.0
ERNICommunity/dbg-trace@>=1.1.0
ERNICommunity/debug-cli@>=1.3.0
https://github.com/dniklaus/Arduino-SerialCommand#1.0.0
https://github.com/dniklaus/wiring-app-debug#3.0.0
https://github.com/dniklaus/arduino-utils-mem#2.1.0
https://github.com/dniklaus/indicator#2.1.1
https://github.com/dniklaus/indicator-dbg#1.0.0
https://github.com/dniklaus/button#1.0.0
[env:nucleo_f411re]
platform = ststm32
framework = arduino
board = nucleo_f411re
build_flags =
${common.build_flags_ext}
lib_deps =
${common.lib_deps_builtin}
${common.lib_deps_external}
[env:featherm0]
platform = atmelsam
framework = arduino
board = adafruit_feather_m0
build_flags =
${common.build_flags_ext}
lib_deps =
${common.lib_deps_builtin}
${common.lib_deps_external}
Adafruit Zero DMA Library
[env:d1_mini]
platform = espressif8266
framework = arduino
board = d1_mini
build_flags =
${common.build_flags_ext}
lib_deps =
${common.lib_deps_builtin}
${common.lib_deps_external}
[env:huzzah]
platform = espressif8266
framework = arduino
board = huzzah
build_flags =
${common.build_flags_ext}
lib_deps =
${common.lib_deps_builtin}
${common.lib_deps_external}
[env:nodemcu]
platform = espressif8266
framework = arduino
board = nodemcuv2
build_flags =
${common.build_flags_ext}
lib_deps =
${common.lib_deps_builtin}
${common.lib_deps_external}
[env:esp32doit-devkit-v1]
platform = espressif32
framework = arduino
board = esp32doit-devkit-v1
build_flags =
${common.build_flags_ext}
lib_deps =
${common.lib_deps_builtin}
${common.lib_deps_external}
[env:lolin32]
platform = espressif32
framework = arduino
board = lolin32
build_flags =
${common.build_flags_ext}
-DBOARD_LOLIN_D32
lib_deps =
${common.lib_deps_builtin}
${common.lib_deps_external}
[env:due]
platform = atmelsam
board = due
framework = arduino
build_flags =
${common.build_flags_ext}
lib_deps =
${common.lib_deps_builtin}
${common.lib_deps_external}
[env:mega2560]
platform = atmelavr
board = megaatmega2560
framework = arduino
build_flags =
${common.build_flags_ext}
lib_deps =
${common.lib_deps_builtin}
${common.lib_deps_external}
[env:uno]
platform = atmelavr
board = uno
framework = arduino
build_flags =
${common.build_flags_ext}
lib_deps =
${common.lib_deps_builtin}
${common.lib_deps_external}