File tree Expand file tree Collapse file tree 2 files changed +2
-0
lines changed
targets/TARGET_NORDIC/TARGET_NRF5x/TARGET_NRF52
TARGET_MCU_NRF52832/device/TOOLCHAIN_GCC_ARM
TARGET_MCU_NRF52840/device/TOOLCHAIN_GCC_ARM Expand file tree Collapse file tree 2 files changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -238,6 +238,7 @@ SECTIONS
238
238
/* Expand the heap to reach the stack boundary. */
239
239
ASSERT (. <= (ORIGIN (RAM) + LENGTH (RAM) - MBED_BOOT_STACK_SIZE), "heap region overflowed into stack");
240
240
. = ORIGIN (RAM) + LENGTH (RAM) - MBED_BOOT_STACK_SIZE;
241
+ __HeapLimit = .;
241
242
} > RAM
242
243
PROVIDE (__heap_start = ADDR (.heap));
243
244
PROVIDE (__heap_size = SIZEOF (.heap));
Original file line number Diff line number Diff line change @@ -254,6 +254,7 @@ SECTIONS
254
254
/* Expand the heap to reach the stack boundary. */
255
255
ASSERT (. <= (ORIGIN (RAM) + LENGTH (RAM) - MBED_BOOT_STACK_SIZE), "heap region overflowed into stack");
256
256
. = ORIGIN (RAM) + LENGTH (RAM) - MBED_BOOT_STACK_SIZE;
257
+ __HeapLimit = .;
257
258
} > RAM
258
259
PROVIDE (__heap_start = ADDR (.heap));
259
260
PROVIDE (__heap_size = SIZEOF (.heap));
You can’t perform that action at this time.
0 commit comments