From 762e2c49c71b7e83a333c7e0181a0c43a4ec8b64 Mon Sep 17 00:00:00 2001 From: Kevin O'Connor Date: Fri, 21 Oct 2022 20:50:09 -0400 Subject: [PATCH] stm32: Use consistent memory position/size on stm32h743 Use the same memory start address and size on both stm32h750 and stm32h743. Signed-off-by: Kevin O'Connor --- src/stm32/Kconfig | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/stm32/Kconfig b/src/stm32/Kconfig index 8faa662d..45238407 100644 --- a/src/stm32/Kconfig +++ b/src/stm32/Kconfig @@ -166,7 +166,6 @@ config FLASH_SIZE config RAM_START hex - default 0x24000000 if MACH_STM32H743 default 0x20000000 config RAM_SIZE @@ -181,8 +180,7 @@ config RAM_SIZE default 0x10000 if MACH_STM32F401 default 0x20000 if MACH_STM32F4x5 || MACH_STM32F446 default 0x24000 if MACH_STM32G0B1 - default 0x20000 if MACH_STM32H750 - default 0x80000 if MACH_STM32H743 + default 0x20000 if MACH_STM32H7 config STACK_SIZE int