File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
targets/TARGET_STM/TARGET_STM32L4
TARGET_STM32L443xC/device/TOOLCHAIN_IAR
TARGET_STM32L475xG/device/TOOLCHAIN_IAR Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ if (!isdefinedsymbol(MBED_BOOT_STACK_SIZE)) {
28
28
define symbol __size_cstack__ = MBED_BOOT_STACK_SIZE;
29
29
define symbol __size_heap__ = 0x4000;
30
30
define block CSTACK with alignment = 8, size = __size_cstack__ { };
31
- define block HEAP with alignment = 8, size = __size_heap__ { };
31
+ define block HEAP with expanding size, minimum size = __size_heap__, alignment = 8 { };
32
32
define block STACKHEAP with fixed order { block HEAP, block CSTACK };
33
33
34
34
initialize by copy with packing = zeros { readwrite };
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ if (!isdefinedsymbol(MBED_BOOT_STACK_SIZE)) {
37
37
define symbol __size_cstack__ = MBED_BOOT_STACK_SIZE;
38
38
define symbol __size_heap__ = 0x12000;
39
39
define block CSTACK with alignment = 8, size = __size_cstack__ { };
40
- define block HEAP with alignment = 8, size = __size_heap__ { };
40
+ define block HEAP with expanding size, minimum size = __size_heap__, alignment = 8 { };
41
41
42
42
initialize by copy with packing = zeros { readwrite };
43
43
do not initialize { section .noinit };
You can’t perform that action at this time.
0 commit comments