Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Klipper3d/klipper.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2022-10-22 03:50:09 +0300
committerKevin O'Connor <kevin@koconnor.net>2022-11-02 22:35:50 +0300
commit762e2c49c71b7e83a333c7e0181a0c43a4ec8b64 (patch)
tree9546abb090aa41e370faa72bb321cf96f433ccfa
parent972ae4ab7c968d133e5160fe1a71dac63fd08a7b (diff)
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 <kevin@koconnor.net>
-rw-r--r--src/stm32/Kconfig4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/stm32/Kconfig b/src/stm32/Kconfig
index 8faa662dd..452384074 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