Skip to content

Commit 77f4e23

Browse files
author
maclobdell
committed
[NCS36510] Reduce default heap size allocated by IAR to 1/4 of total RAM.
Allows mesh minimal example to compile with IAR.
1 parent 65adf44 commit 77f4e23

File tree

1 file changed

+1
-1
lines changed
  • targets/TARGET_ONSEMI/TARGET_NCS36510/device/TOOLCHAIN_IAR

1 file changed

+1
-1
lines changed

targets/TARGET_ONSEMI/TARGET_NCS36510/device/TOOLCHAIN_IAR/NCS36510.icf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ define region RAM_ALL = Mem:[from 0x3FFF4000 size 0xC000];
1515
define block CSTACK with size = 0x200, alignment = 8 { };
1616

1717
/* No Heap is created for C library, all memory management should be handled by the application */
18-
define block HEAP with alignment = 8, size = 0x4000 { };
18+
define block HEAP with alignment = 8, size = 0x3000 { };
1919

2020
/* Handle initialization */
2121
do not initialize { section .noinit };

0 commit comments

Comments
 (0)