soc: stm32f429zi: rename SOC config flag

Rename SOC_STM32F429XX to SOC_STM32F429XI to keep flash
size information.
Aim is to be able to distinguish flash size variants of
the SoC when needed (for instance in dts/arm/st/mem.h file)

Change-Id: Id188b7703d2bce0a3ded09132ff0f205efa9c143
Signed-off-by: Erwan Gouriou <erwan.gouriou@linaro.org>
This commit is contained in:
Erwan Gouriou 2017-05-10 13:54:16 +02:00 committed by Anas Nashif
commit 2a10920aaf
3 changed files with 4 additions and 4 deletions

View file

@ -5,7 +5,7 @@
# SPDX-License-Identifier: Apache-2.0
#
if SOC_STM32F429XX
if SOC_STM32F429XI
config SOC
string
@ -15,4 +15,4 @@ config NUM_IRQS
int
default 91
endif # SOC_STM32F429XX
endif # SOC_STM32F429XI

View file

@ -18,7 +18,7 @@ config SOC_STM32F407XX
config SOC_STM32F411XE
bool "STM32F411XE"
config SOC_STM32F429XX
config SOC_STM32F429XI
bool "STM32F429XX"
endchoice

View file

@ -30,7 +30,7 @@
#elif defined(CONFIG_SOC_STM32F411XE)
#define DT_FLASH_SIZE __SIZE_K(512)
#define DT_SRAM_SIZE __SIZE_K(128)
#elif defined(CONFIG_SOC_STM32F429XX)
#elif defined(CONFIG_SOC_STM32F429XI)
#define DT_FLASH_SIZE __SIZE_K(2048)
#define DT_SRAM_SIZE __SIZE_K(256)
#elif defined(CONFIG_SOC_STM32L475XG)