mirror of
https://github.com/micropython/micropython.git
synced 2026-01-06 20:20:14 +01:00
stm32/boards/stm32f429.ld: Increase uPy heap size by 64k for F429 MCU.
The F429 has 256k total RAM, with 64k already set aside for flash write cache, so the uPy heap can be increased this much.
This commit is contained in:
@@ -26,4 +26,4 @@ _estack = ORIGIN(RAM) + LENGTH(RAM);
|
||||
_ram_start = ORIGIN(RAM);
|
||||
_ram_end = ORIGIN(RAM) + LENGTH(RAM);
|
||||
_heap_start = _ebss; /* heap starts just after statically allocated memory */
|
||||
_heap_end = 0x2001c000; /* tunable */
|
||||
_heap_end = 0x2002c000; /* tunable */
|
||||
|
||||
Reference in New Issue
Block a user