mirror of https://github.com/Desuuuu/klipper.git
stm32: Fix memory sizing for STM32F405/7 chips
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
This commit is contained in:
parent
9445e1d555
commit
8712648370
|
@ -54,14 +54,12 @@ config CLOCK_FREQ
|
|||
config FLASH_SIZE
|
||||
hex
|
||||
default 0x10000 if MACH_STM32F103
|
||||
default 0x80000 if MACH_STM32F405 || MACH_STM32F407
|
||||
default 0x80000 if MACH_STM32F446
|
||||
default 0x80000 if MACH_STM32F4
|
||||
|
||||
config RAM_SIZE
|
||||
hex
|
||||
default 0x5000 if MACH_STM32F103
|
||||
default 0x30000 if MACH_STM32F405 || MACH_STM32F407
|
||||
default 0x20000 if MACH_STM32F446
|
||||
default 0x20000 if MACH_STM32F4
|
||||
|
||||
config STACK_SIZE
|
||||
int
|
||||
|
|
Loading…
Reference in New Issue