From 9c1a9768a083f811f242f5e16e797f835c6c22e6 Mon Sep 17 00:00:00 2001 From: Ricardo Rivera-Matos Date: Mon, 12 May 2025 09:48:59 -0500 Subject: [PATCH] soc: stm32: Defaults to "stm32f401xe" when SOC_STM32F401XD selected The STM32F401XE and STM32F401XD family of devices are identical except for a difference in the flash storage size. Let's reuse the F401XE HAL symbol for the newly introduced F401XD variants. Signed-off-by: Ricardo Rivera-Matos --- soc/st/stm32/stm32f4x/Kconfig.soc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/soc/st/stm32/stm32f4x/Kconfig.soc b/soc/st/stm32/stm32f4x/Kconfig.soc index 3104540345011..3922b5d3d0555 100644 --- a/soc/st/stm32/stm32f4x/Kconfig.soc +++ b/soc/st/stm32/stm32f4x/Kconfig.soc @@ -104,7 +104,7 @@ config SOC_STM32F479XX config SOC default "stm32f401xc" if SOC_STM32F401XC - default "stm32f401xd" if SOC_STM32F401XD + default "stm32f401xe" if SOC_STM32F401XD default "stm32f401xe" if SOC_STM32F401XE default "stm32f405xx" if SOC_STM32F405XX default "stm32f407xx" if SOC_STM32F407XE