From cc0c4e521e1dcca451fc67d2c06a5a61e597d37c Mon Sep 17 00:00:00 2001 From: Astro Date: Mon, 19 Aug 2019 00:15:23 +0200 Subject: [PATCH] linker script: shrink STACK_SIZE to avoid DataAborts --- link.x | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/link.x b/link.x index a4f81a06..e6c1a282 100644 --- a/link.x +++ b/link.x @@ -1,6 +1,6 @@ ENTRY(_boot_cores); -STACK_SIZE = 0x10000 - 8; +STACK_SIZE = 0x8000 - 4; /* Provide some defaults */ PROVIDE(Reset = _boot_cores);