From 4d7f3aebc85ff3928a25bd1567f94f2789d6437b Mon Sep 17 00:00:00 2001 From: Dominik Sliwa Date: Tue, 11 Sep 2018 15:31:36 +0200 Subject: Increase heap and stack space Signed-off-by: Dominik Sliwa --- MK20DN512xxx10_flash.ld | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/MK20DN512xxx10_flash.ld b/MK20DN512xxx10_flash.ld index 6e2a3d4..56a0cc3 100644 --- a/MK20DN512xxx10_flash.ld +++ b/MK20DN512xxx10_flash.ld @@ -50,8 +50,8 @@ /* Entry Point */ ENTRY(Reset_Handler) -HEAP_SIZE = DEFINED(__heap_size__) ? __heap_size__ : 0x0400; -STACK_SIZE = DEFINED(__stack_size__) ? __stack_size__ : 0x0400; +HEAP_SIZE = DEFINED(__heap_size__) ? __heap_size__ : 0x4000; +STACK_SIZE = DEFINED(__stack_size__) ? __stack_size__ : 0x4000; M_VECTOR_RAM_SIZE = DEFINED(__ram_vector_table__) ? 0x0400 : 0x0; /* Specify the memory areas */ -- cgit v1.2.3