Skip to content

Commit bd9415e

Browse files
manoj153nashif
authored andcommitted
soc: arm: stm32h7: kconfig workaround to handle SoC H7A3XX-Q P/N
Set the correct soc string so that the correct CMSIS file is being utilised. Signed-off-by: Manojkumar Subramaniam <[email protected]>
1 parent 881407b commit bd9415e

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

soc/arm/st_stm32/stm32h7/Kconfig.defconfig.stm32h7a3xx

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,13 @@
33
# Copyright (c) 2021 Electrolance Solutions
44
# SPDX-License-Identifier: Apache-2.0
55

6-
if SOC_STM32H7A3XX
6+
if SOC_STM32H7A3XX || SOC_STM32H7A3XXQ
77

88
config SOC
9-
default "stm32h7a3xx"
9+
default "stm32h7a3xxQ" if SOC_STM32H7A3XXQ
10+
default "stm32h7a3xx" if SOC_STM32H7A3XX
1011

1112
config NUM_IRQS
1213
default 155
1314

14-
endif # SOC_STM32H7A3XX
15+
endif # SOC_STM32H7A3XX || SOC_STM32H7A3XXQ

0 commit comments

Comments
 (0)