-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathdefault.yml
184 lines (178 loc) · 3.72 KB
/
default.yml
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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
# Note that ci_config_spec.rb has tests for this file's contents
# some of the defines were guessed from
# https://en.wikipedia.org/wiki/List_of_Arduino_boards_and_compatible_systems
packages:
# arduino:xxx are builtin, we don't need to include them here
esp8266:esp8266:
url: http://arduino.esp8266.com/stable/package_esp8266com_index.json
adafruit:avr:
url: https://adafruit.github.io/arduino-board-index/package_adafruit_index.json
adafruit:samd:
url: https://adafruit.github.io/arduino-board-index/package_adafruit_index.json
esp32:esp32:
url: https://dl.espressif.com/dl/package_esp32_index.json
platforms:
nano_v2:
board: arduino:avr:nano
package: arduino:avr
gcc:
features:
defines:
- __AVR_ATmega168__
warnings:
flags:
nano_v3: &nano_p
board: arduino:avr:nano
package: arduino:avr
gcc:
features:
defines:
- __AVR_ATmega328__
warnings:
flags:
nano: *nano_p
uno:
board: arduino:avr:uno
package: arduino:avr
gcc:
features:
defines:
- __AVR_ATmega328P__
warnings:
flags:
due:
board: arduino:sam:arduino_due_x
package: arduino:sam
gcc:
features:
defines:
# The due should use the ATSAM3X8E; however, that component does not seem
# to be defined for the Godmode tests/components
# The next closest part would be the AVR_ATmega2560 as both boards
# use the mega form factor
#- __ATSAM3X8E__
- __AVR_ATmega2560__
#- __AVR_ATmega328__
warnings:
flags:
zero:
board: arduino:samd:arduino_zero_native
package: arduino:samd
gcc:
features:
defines:
- __SAMD21G18A__
- ARDUINO_SAMD_ZERO
warnings:
flags:
esp32:
board: esp32:esp32:featheresp32:FlashFreq=80
package: esp32:esp32
gcc:
features:
defines:
warnings:
flags:
esp8266:
board: esp8266:esp8266:huzzah:FlashSize=4M3M,CpuFrequency=80
package: esp8266:esp8266
gcc:
features:
defines:
warnings:
flags:
leonardo:
board: arduino:avr:leonardo
package: arduino:avr
gcc:
features:
defines:
- __AVR_ATmega32U4__
warnings:
flags:
trinket:
board: adafruit:avr:trinket5
package: adafruit:avr
gcc:
features:
defines:
warnings:
flags:
gemma:
board: arduino:avr:gemma
package: adafruit:avr
gcc:
features:
defines:
warnings:
flags:
m4:
board: adafruit:samd:adafruit_metro_m4
package: adafruit:samd
gcc:
features:
defines:
warnings:
flags:
grand_central_m4:
board: adafruit:samd:adafruit_grand_central_m4
package: adafruit:samd
gcc:
features:
defines:
warnings:
flags:
mega1280:
board: arduino:avr:mega:cpu=atmega1280
package: arduino:avr
gcc:
features:
defines:
- __AVR_ATmega1280__
warnings:
flags:
mega2560:
board: arduino:avr:mega:cpu=atmega2560
package: arduino:avr
gcc:
features:
defines:
- __AVR_ATmega2560__
warnings:
flags:
cplayClassic:
board: arduino:avr:circuitplay32u4cat
package: arduino:avr
gcc:
features:
defines:
warnings:
flags:
cplayExpress:
board: arduino:samd:adafruit_circuitplayground_m0
package: arduino:samd
gcc:
features:
defines:
warnings:
flags:
compile:
libraries: ~
platforms:
- uno
- due
- zero
- leonardo
- m4
- esp32
- esp8266
- mega2560
unittest:
compilers:
- g++
libraries: ~
platforms:
- uno
- due
- zero
- leonardo