File tree Expand file tree Collapse file tree 1 file changed +5
-0
lines changed
targets/TARGET_NORDIC/TARGET_NRF5x/TARGET_NRF52/TARGET_MCU_NRF52840/device/TOOLCHAIN_ARM_STD Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change 25
25
#define MBED_RAM1_START (MBED_CRASH_REPORT_RAM_START + MBED_CRASH_REPORT_RAM_SIZE)
26
26
#define MBED_RAM1_SIZE (MBED_RAM_SIZE - (MBED_RAM0_SIZE + MBED_CRASH_REPORT_RAM_SIZE))
27
27
28
+
29
+ #define RAM_FIXED_SIZE (MBED_BOOT_STACK_SIZE+MBED_RAM0_SIZE+MBED_CRASH_REPORT_RAM_SIZE)
30
+
28
31
LR_IROM1 MBED_APP_START MBED_APP_SIZE {
29
32
ER_IROM1 MBED_APP_START MBED_APP_SIZE {
30
33
*.o (RESET, +First)
@@ -39,6 +42,8 @@ LR_IROM1 MBED_APP_START MBED_APP_SIZE {
39
42
RW_IRAM1 MBED_RAM1_START MBED_RAM1_SIZE {
40
43
.ANY (+RW +ZI)
41
44
}
45
+ ARM_LIB_HEAP AlignExpr(+0, 16) EMPTY (MBED_RAM_SIZE-RAM_FIXED_SIZE+MBED_RAM_START-AlignExpr(ImageLimit(RW_IRAM1), 16)) {
46
+ }
42
47
ARM_LIB_STACK MBED_RAM1_START+MBED_RAM1_SIZE EMPTY -Stack_Size { ; Stack region growing down
43
48
}
44
49
}
You can’t perform that action at this time.
0 commit comments