Skip to content

Commit 82d0c7a

Browse files
FRASTMkartben
authored andcommitted
soc: stm32: Adds the STM32WBA65x device.
This commit adds support for the STM32WBA65x MCU. Signed-off-by: Francois Ramu <[email protected]>
1 parent f0b1c49 commit 82d0c7a

File tree

4 files changed

+18
-1
lines changed

4 files changed

+18
-1
lines changed

soc/st/stm32/Kconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ choice POWER_SUPPLY_CHOICE
6060
prompt "STM32 power supply configuration"
6161
default POWER_SUPPLY_LDO
6262
depends on SOC_SERIES_STM32H7X || SOC_SERIES_STM32H7RSX || \
63-
SOC_SERIES_STM32U5X || SOC_STM32WBA55XX
63+
SOC_SERIES_STM32U5X || SOC_STM32WBA55XX || SOC_STM32WBA65XX
6464

6565
config POWER_SUPPLY_LDO
6666
bool "LDO supply"

soc/st/stm32/soc.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -221,6 +221,7 @@ family:
221221
socs:
222222
- name: stm32wba52xx
223223
- name: stm32wba55xx
224+
- name: stm32wba65xx
224225
- name: stm32wlx
225226
socs:
226227
- name: stm32wle4xx
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# ST Microelectronics STM32WBA65XX MCU
2+
3+
# Copyright (c) 2025 STMicroelectronics
4+
# SPDX-License-Identifier: Apache-2.0
5+
6+
if SOC_STM32WBA65XX
7+
8+
config NUM_IRQS
9+
default 82
10+
11+
endif # SOC_STM32WBA65XX

soc/st/stm32/stm32wbax/Kconfig.soc

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,11 @@ config SOC_STM32WBA55XX
1818
bool
1919
select SOC_SERIES_STM32WBAX
2020

21+
config SOC_STM32WBA65XX
22+
bool
23+
select SOC_SERIES_STM32WBAX
24+
2125
config SOC
2226
default "stm32wba52xx" if SOC_STM32WBA52XX
2327
default "stm32wba55xx" if SOC_STM32WBA55XX
28+
default "stm32wba65xx" if SOC_STM32WBA65XX

0 commit comments

Comments
 (0)