mirror of https://github.com/ARMmbed/mbed-os.git
[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
parent
65adf446c5
commit
77f4e23c0f
|
@ -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 };
|
||||
|
|
Loading…
Reference in New Issue