forked from ssilverman/QNEthernet
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathplatformio.ini
More file actions
220 lines (183 loc) · 5.84 KB
/
platformio.ini
File metadata and controls
220 lines (183 loc) · 5.84 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
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
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
; 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
; Common properties
[common]
build_flags = -g -Og -Wvla -Werror
-DQNETHERNET_ENABLE_RAW_FRAME_SUPPORT=1
-DQNETHERNET_ENABLE_RAW_FRAME_LOOPBACK=1
build_flags-altcp =
-DLWIP_ALTCP=1 -DLWIP_ALTCP_TLS=1
-DQNETHERNET_PROVIDE_ALTCP_DEFAULT_FUNCTIONS=1
build_flags-w5500 =
-DQNETHERNET_DRIVER_W5500
[main]
build_flags =
-DMAIN_TEST_PROGRAM
; Additional properties for use during testing
[testing]
build_flags =
-DLWIP_NETIF_LOOPBACK=1
; ---------------------------------------------------------------------------
; Teensy
; ---------------------------------------------------------------------------
; Base properties
[teensy-base]
platform = teensy
framework = arduino
monitor_speed = 115200
build_unflags = -fpermissive -Wno-error=narrowing
build_flags = ${common.build_flags}
; Properties for a main program
[teensy-main]
extends = teensy-base
build_flags = ${teensy-base.build_flags} ${main.build_flags}
; Properties for tests
[teensy-test]
extends = teensy-base
build_type = test
build_flags = ${teensy-base.build_flags} ${testing.build_flags}
test_build_src = yes
[env:teensy41]
extends = teensy-main
board = teensy41
[env:teensy41-altcp]
extends = teensy-main
board = teensy41
build_flags = ${teensy-main.build_flags}
${common.build_flags-altcp}
[env:teensy41-w5500]
extends = teensy-main
board = teensy41
build_flags = ${teensy-main.build_flags}
${common.build_flags-w5500}
[env:teensy41-test]
extends = teensy-test
board = teensy41
[env:teensy41-altcp-test]
extends = teensy-test
board = teensy41
build_flags = ${teensy-test.build_flags}
${common.build_flags-altcp}
[env:teensy41-w5500-test]
extends = teensy-test
board = teensy41
build_flags = ${teensy-test.build_flags}
${common.build_flags-w5500}
[env:teensy41-test-entropy-lib]
extends = teensy-test
board = teensy41
build_flags = ${teensy-test.build_flags}
-DQNETHERNET_USE_ENTROPY_LIB=1
[env:teensy40-nodriver]
extends = teensy-main
board = teensy40
[env:teensy40-altcp]
extends = teensy-main
board = teensy40
build_flags = ${teensy-main.build_flags}
${common.build_flags-altcp}
[env:teensy40-w5500]
extends = teensy-main
board = teensy40
build_flags = ${teensy-main.build_flags}
${common.build_flags-w5500}
[env:teensy40-altcp-test]
extends = teensy-test
board = teensy40
build_flags = ${teensy-test.build_flags}
${common.build_flags-altcp}
[env:teensy40-w5500-test]
extends = teensy-test
board = teensy40
build_flags = ${teensy-test.build_flags}
${common.build_flags-w5500}
; ---------------------------------------------------------------------------
; Adafruit Feather M4
; For C++11 testing
; ---------------------------------------------------------------------------
; Base properties
[adafruit_feather_m4-base]
platform = atmelsam
framework = arduino
board = adafruit_feather_m4
build_flags = ${common.build_flags}
-Wno-error=vla ; So a VLA warning in the core doesn't cause an error
; Properties for a main program
[adafruit_feather_m4-main]
extends = adafruit_feather_m4-base
build_flags = ${adafruit_feather_m4-base.build_flags} ${main.build_flags}
; Properties for tests
[adafruit_feather_m4-test]
extends = adafruit_feather_m4-base
build_type = test
build_flags = ${adafruit_feather_m4-base.build_flags} ${testing.build_flags}
test_build_src = yes
[env:adafruit_feather_m4]
extends = adafruit_feather_m4-main
build_flags = ${adafruit_feather_m4-main.build_flags}
${common.build_flags-w5500}
[env:adafruit_feather_m4-altcp]
extends = adafruit_feather_m4-main
build_flags = ${adafruit_feather_m4-main.build_flags}
${common.build_flags-w5500}
${common.build_flags-altcp}
[env:adafruit_feather_m4-nodriver]
extends = adafruit_feather_m4-main
[env:adafruit_feather_m4-test]
extends = adafruit_feather_m4-test
build_flags = ${adafruit_feather_m4-test.build_flags}
${common.build_flags-w5500}
[env:adafruit_feather_m4-altcp-test]
extends = adafruit_feather_m4-test
build_flags = ${adafruit_feather_m4-test.build_flags}
${common.build_flags-w5500}
${common.build_flags-altcp}
; ---------------------------------------------------------------------------
; BlackPill V2.0 (STM32F411CE)
; For C++14 testing
; ---------------------------------------------------------------------------
; Base properties
[blackpill_f411ce-base]
platform = ststm32
framework = arduino
board = blackpill_f411ce
build_flags = ${common.build_flags}
; -DF_CPU=100000000 ; For arm_high_resolution_clock's std::ratio
; ; It's unclear why board_build.f_cpu doesn't work
; Properties for a main program
[blackpill_f411ce-main]
extends = blackpill_f411ce-base
build_flags = ${blackpill_f411ce-base.build_flags} ${main.build_flags}
; Properties for tests
[blackpill_f411ce-test]
extends = blackpill_f411ce-base
build_type = test
build_flags = ${blackpill_f411ce-base.build_flags} ${testing.build_flags}
test_build_src = yes
[env:blackpill_f411ce]
extends = blackpill_f411ce-main
build_flags = ${blackpill_f411ce-main.build_flags}
${common.build_flags-w5500}
[env:blackpill_f411ce-altcp]
extends = blackpill_f411ce-main
build_flags = ${blackpill_f411ce-main.build_flags}
${common.build_flags-w5500}
${common.build_flags-altcp}
[env:blackpill_f411ce-nodriver]
extends = blackpill_f411ce-main
[env:blackpill_f411ce-test]
extends = blackpill_f411ce-test
build_flags = ${blackpill_f411ce-test.build_flags}
${common.build_flags-w5500}
[env:blackpill_f411ce-altcp-test]
extends = blackpill_f411ce-test
build_flags = ${blackpill_f411ce-test.build_flags}
${common.build_flags-w5500}
${common.build_flags-altcp}