forked from zephyrproject-rtos/zephyr
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
soc/arm: add support for additonal stm32wl socs
This commit adds support for stm32wle4xx, stm32wle5xx single core socs, as well as stm32wl54 dual core soc. Signed-off-by: Thomas Stranger <thomas.stranger@outlook.com>
- Loading branch information
Showing
5 changed files
with
51 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# STMicroelectronics STM32WL54 MCU | ||
|
||
# Copyright (c) 2021 Thomas Stranger | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
if SOC_STM32WL54XX | ||
|
||
config SOC | ||
default "stm32wl54xx" | ||
|
||
config NUM_IRQS | ||
default 62 | ||
|
||
endif # SOC_STM32WL54XX |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# STMicroelectronics STM32WLE4 MCU | ||
|
||
# Copyright (c) 2021 Thomas Stranger | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
if SOC_STM32WLE4XX | ||
|
||
config SOC | ||
default "stm32wle4xx" | ||
|
||
config NUM_IRQS | ||
default 62 | ||
|
||
endif # SOC_STM32WLE4XX |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# STMicroelectronics STM32WLE5 MCU | ||
|
||
# Copyright (c) 2021 Thomas Stranger | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
if SOC_STM32WLE5XX | ||
|
||
config SOC | ||
default "stm32wle5xx" | ||
|
||
config NUM_IRQS | ||
default 62 | ||
|
||
endif # SOC_STM32WLE5XX |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters