File tree Expand file tree Collapse file tree 2 files changed +2
-4
lines changed
targets/TARGET_Samsung/TARGET_SIDK_S5JS100/device Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -75,9 +75,7 @@ ENTRY(Reset_Handler)
7575
7676/* Heap 1/4 of ram and stack 1/8 */
7777__stack_size__ = 0x0400;
78- __heap_size__ = 0x4000 ;
7978
80- HEAP_SIZE = DEFINED (__heap_size__) ? __heap_size__ : 0x0400 ;
8179STACK_SIZE = DEFINED (__stack_size__) ? __stack_size__ : 0x0400 ;
8280
8381/* Size of the vector table in SRAM */
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ if (!isdefinedsymbol(MBED_BOOT_STACK_SIZE)) {
3333}
3434
3535define symbol CSTACK_SIZE = MBED_BOOT_STACK_SIZE;
36- define symbol HEAP_SIZE = 0x50000;
36+ define symbol __ICFEDIT_size_heap__ = 0x50000;
3737
3838/*Meory regions*/
3939define memory mem with size = 4G;
@@ -42,7 +42,7 @@ define region ROM_REGION = mem:[from S5JS100_CODE_BASE to S5JS100_CODE_END];
4242define region IRAM_REGION = mem:[from S5JS100_IRAM_BASE to S5JS100_IRAM_END];
4343
4444define block CSTACK with alignment = 8, size = CSTACK_SIZE { };
45- define block HEAP with alignment = 8, size = HEAP_SIZE { };
45+ define block HEAP with alignment = 8, size = __ICFEDIT_size_heap__ { };
4646define block RW { readwrite };
4747define block ZI { zi };
4848
You can’t perform that action at this time.
0 commit comments