From 8c0b7cdcf23d1396230a0682b70e57aee42241b7 Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Mon, 6 Jul 2020 20:48:09 +0800 Subject: [PATCH] runtime: adjust stack and heap sizes --- src/runtime/link.x | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/runtime/link.x b/src/runtime/link.x index cb1a9f7..615d2ed 100644 --- a/src/runtime/link.x +++ b/src/runtime/link.x @@ -59,21 +59,21 @@ SECTIONS .heap (NOLOAD) : ALIGN(8) { __heap_start = .; - . += 0x8000000; + . += 0x1000000; __heap_end = .; } > SDRAM .stack1 (NOLOAD) : ALIGN(8) { __stack1_end = .; - . += 0x8000000; + . += 0x1000000; __stack1_start = .; } > SDRAM .stack0 (NOLOAD) : ALIGN(8) { __stack0_end = .; - . += 0x10000; + . += 0x20000; __stack0_start = .; } > SDRAM }