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)
75
75
76
76
/* Heap 1/4 of ram and stack 1/8 */
77
77
__stack_size__ = 0x0400;
78
- __heap_size__ = 0x4000;
79
78
80
- HEAP_SIZE = DEFINED (__heap_size__) ? __heap_size__ : 0x0400;
81
79
STACK_SIZE = DEFINED (__stack_size__) ? __stack_size__ : 0x0400;
82
80
83
81
/* 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)) {
33
33
}
34
34
35
35
define symbol CSTACK_SIZE = MBED_BOOT_STACK_SIZE;
36
- define symbol HEAP_SIZE = 0x50000;
36
+ define symbol __ICFEDIT_size_heap__ = 0x50000;
37
37
38
38
/*Meory regions*/
39
39
define memory mem with size = 4G;
@@ -42,7 +42,7 @@ define region ROM_REGION = mem:[from S5JS100_CODE_BASE to S5JS100_CODE_END];
42
42
define region IRAM_REGION = mem:[from S5JS100_IRAM_BASE to S5JS100_IRAM_END];
43
43
44
44
define 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__ { };
46
46
define block RW { readwrite };
47
47
define block ZI { zi };
48
48
You can’t perform that action at this time.
0 commit comments