stm32/stm32wlx: Add support for stm32wl55_cm4

board/stm32: Add support for GNSE (Generic Node Sensor Edition)

 Thanks to @jamestait for his help on GNSE port
This commit is contained in:
Olivier Fauchon
2021-12-09 00:22:09 +01:00
committed by Ron Evans
parent b4503c1e37
commit 93ac7cec0d
15 changed files with 100 additions and 22 deletions
+12
View File
@@ -0,0 +1,12 @@
{
"inherits": [
"stm32wl5x_cm4"
],
"build-tags": [
"gnse"
],
"serial": "uart",
"flash-method": "openocd",
"openocd-interface": "stlink",
"openocd-target": "stm32wlx"
}
+1 -2
View File
@@ -1,12 +1,11 @@
{
"inherits": [
"stm32wle5"
"stm32wl5x_cm4"
],
"build-tags": [
"nucleowl55jc"
],
"serial": "uart",
"linkerscript": "targets/stm32wle5.ld",
"flash-method": "openocd",
"openocd-interface": "stlink",
"openocd-target": "stm32wlx"
+8
View File
@@ -0,0 +1,8 @@
{
"inherits": ["cortex-m4"],
"build-tags": [ "stm32wl5x_cm4","stm32wlx", "stm32"],
"extra-files": [
"src/device/stm32/stm32wl5x_cm4.s"
],
"linkerscript": "targets/stm32wlx.ld"
}
+3 -3
View File
@@ -1,8 +1,8 @@
{
"inherits": ["cortex-m4"],
"build-tags": ["stm32wle5", "stm32"],
"build-tags": [ "stm32wle5","stm32wlx", "stm32"],
"extra-files": [
"src/device/stm32/stm32wle5.s"
],
"linkerscript": "targets/stm32wle5.ld"
}
"linkerscript": "targets/stm32wlx.ld"
}