Skip to content

Commit 39061b0

Browse files
Merge pull request #4187 from maclobdell/ncs36510_heap_fix
[NCS36510] Reduce default heap size allocated by IAR to 1/4 of RAM
2 parents 79bf717 + 77f4e23 commit 39061b0

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)