[NCS36510] Reduce default heap size allocated by IAR to 1/4 of total RAM.

Allows mesh minimal example to compile with IAR.
pull/4187/head
maclobdell 2017-04-13 22:48:34 -05:00
parent 65adf446c5
commit 77f4e23c0f
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 };