Merge pull request #4187 from maclobdell/ncs36510_heap_fix

[NCS36510] Reduce default heap size allocated by IAR to 1/4 of RAM
pull/4225/head
Jimmy Brisson 2017-04-24 10:59:28 -05:00 committed by GitHub
commit 39061b0264
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ define region RAM_ALL = Mem:[from 0x3FFF4000 size 0xC000];
define block CSTACK with size = 0x200, alignment = 8 { };
/* No Heap is created for C library, all memory management should be handled by the application */
define block HEAP with alignment = 8, size = 0x4000 { };
define block HEAP with alignment = 8, size = 0x3000 { };
/* Handle initialization */
do not initialize { section .noinit };