Skip to content

Commit 6972019

Browse files
committed
2 parents 7d4c490 + 85094e0 commit 6972019

File tree

15 files changed

+481
-205
lines changed

15 files changed

+481
-205
lines changed

Diff for: CI/build/conf/cores_config.json

+38-6
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,8 @@
5757
"CoreBoard_F401RC",
5858
"DIYMORE_F407VGT",
5959
"EEXTR_F030_V1",
60+
"ELEKTOR_F072C8",
61+
"FEATHER_F405",
6062
"Generic_F103R8T6",
6163
"Generic_F103RBT6",
6264
"Generic_F103RCT6",
@@ -75,7 +77,8 @@
7577
"RAK811_TRACKER",
7678
"RAK811_TRACKERA",
7779
"REMRAM_V1",
78-
"Sparky_V1"
80+
"Sparky_V1",
81+
"Wraith32_V1"
7982
]
8083
},
8184
{
@@ -91,7 +94,10 @@
9194
{
9295
"pattern": "Firmata/",
9396
"applicable": false,
94-
"boards": [ "BLUEPILL_F103C6", "EEXTR_F030_V1", "MALYANM200_F103CB", "STEVAL_MKSBOX1V1", "VAKE_F446VE" ]
97+
"boards": [
98+
"BLUEPILL_F103C6", "EEXTR_F030_V1", "ELEKTOR_F072C8", "MALYANM200_F103CB",
99+
"PX_HER0", "STEVAL_MKSBOX1V1", "VAKE_F446VE", "Wraith32_V1"
100+
]
95101
},
96102
{
97103
"pattern": "Blink(WithoutDelay)?.ino",
@@ -181,12 +187,17 @@
181187
"ARMED_V1",
182188
"BLUEPILL_F103C6",
183189
"EEXTR_F030_V1",
190+
"ELEKTOR_F072C8",
191+
"FEATHER_F405",
184192
"MALYANM200_F103CB",
185193
"NUCLEO_L031K6",
194+
"PX_HER0",
186195
"RAK811_TRACKER",
187196
"RAK811_TRACKERA",
188197
"REMRAM_V1",
189-
"STEVAL_MKSBOX1V1"
198+
"STEVAL_MKSBOX1V1",
199+
"THUNDER_PACK",
200+
"Wraith32_V1"
190201
]
191202
},
192203
{
@@ -195,10 +206,12 @@
195206
"boards": [
196207
"ARMED_V1",
197208
"EEXTR_F030_V1",
209+
"PX_HER0",
198210
"RAK811_TRACKER",
199211
"RAK811_TRACKERA",
200212
"REMRAM_V1",
201-
"STEVAL_MKSBOX1V1"
213+
"STEVAL_MKSBOX1V1",
214+
"THUNDER_PACK"
202215
]
203216
},
204217
{
@@ -215,7 +228,7 @@
215228
{
216229
"pattern": "SerialLoop.ino|Tests_basic_functions.ino",
217230
"applicable": false,
218-
"boards": [ "BLUEPILL_F103C6", "NUCLEO_L031K6" ]
231+
"boards": [ "BLUEPILL_F103C6", "NUCLEO_L031K6", "Wraith32_V1"]
219232
},
220233
{
221234
"pattern": "(Alarm)?TimedWak(e)?up|SerialDeepSleep",
@@ -233,8 +246,27 @@
233246
"boards": [
234247
"ST3DP001_EVAL",
235248
"STEVAL_MKSBOX1V1",
236-
"VAKE_F446VE"
249+
"VAKE_F446VE",
250+
"Wraith32_V1"
251+
]
252+
},
253+
{
254+
"pattern": "IWatchdog|RTC|STM32LowPower",
255+
"applicable": false,
256+
"boards": [
257+
"STM32MP157A_DK1",
258+
"STM32MP157C_DK2"
237259
]
260+
},
261+
{
262+
"pattern": "PWM_FullConfiguration",
263+
"applicable": false,
264+
"boards": [ "THUNDER_PACK" ]
265+
},
266+
{
267+
"pattern": "HardwareTimer_OutputInput_test",
268+
"applicable": true,
269+
"boards": [ "NUCLEO_L476RG" ]
238270
}
239271
]
240272
},

Diff for: README.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,7 @@ This porting is based on:
2020
* The Low-Layer (LL) APIs, a light-weight, optimized, expert oriented set of APIs designed for both performance and runtime efficiency
2121
* CMSIS device defintion for STM32
2222
* [CMSIS](https://developer.arm.com/embedded/cmsis): Cortex Microcontroller Software Interface Standard (CMSIS) is a vendor-independent hardware abstraction layer for the Cortex®-M processor series and defines generic tool interfaces. It has been packaged as a module for Arduino IDE: https://github.com/stm32duino/ArduinoModule-CMSIS
23-
* [GNU Arm Embedded Toolchain](https://developer.arm.com/open-source/gnu-toolchain/gnu-rm): Arm Embedded GCC compiler, libraries and other GNU tools necessary for bare-metal software development on devices based on the Arm Cortex-M. Packages are provided thanks: https://github.com/stm32duino/arm-none-eabi-gcc
24-
23+
* [GNU Arm Embedded Toolchain](https://developer.arm.com/open-source/gnu-toolchain/gnu-rm): Arm Embedded GCC compiler, libraries and other GNU tools necessary for bare-metal software development on devices based on the Arm Cortex-M. Packages are provided thanks [The xPack GNU Arm Embedded GCC](https://xpack.github.io/arm-none-eabi-gcc/): https://github.com/xpack-dev-tools/arm-none-eabi-gcc-xpack
2524

2625
## Getting Started
2726

0 commit comments

Comments
 (0)