File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed
targets/TARGET_NORDIC/TARGET_NRF5x/TARGET_NRF52/TARGET_MCU_NRF52832/device/TOOLCHAIN_ARM_STD Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change 26
26
27
27
#define MBED_RAM0_START MBED_RAM_START
28
28
#define MBED_RAM0_SIZE 0xE0
29
- #define MBED_RAM1_START (MBED_RAM_START + MBED_RAM0_SIZE)
29
+ #define MBED_RAM1_START (MBED_RAM0_START + MBED_RAM0_SIZE)
30
30
#define MBED_RAM1_SIZE (MBED_RAM_SIZE - MBED_RAM0_SIZE)
31
+ #define RAM_FIXED_SIZE (MBED_CONF_TARGET_BOOT_STACK_SIZE + MBED_RAM0_SIZE)
31
32
32
33
LR_IROM1 MBED_APP_START MBED_APP_SIZE {
33
34
ER_IROM1 MBED_APP_START MBED_APP_SIZE {
34
35
*.o (RESET, +First)
35
- *(InRoot$$Sections)
36
+ *(InRoot$$Sections)
36
37
.ANY (+RO)
37
38
}
38
-
39
39
RW_IRAM0 MBED_RAM0_START UNINIT MBED_RAM0_SIZE { ;no init section
40
40
*(*nvictable)
41
41
}
42
42
RW_IRAM1 MBED_RAM1_START MBED_RAM1_SIZE {
43
43
.ANY (+RW +ZI)
44
44
}
45
- ARM_LIB_STACK MBED_RAM1_START+MBED_RAM1_SIZE EMPTY -Stack_Size { ; Stack region growing down
45
+ ARM_LIB_HEAP AlignExpr(+0, 16) EMPTY (MBED_RAM_SIZE - RAM_FIXED_SIZE + MBED_RAM_START - AlignExpr(ImageLimit(RW_IRAM1), 16)) {
46
+ }
47
+ ARM_LIB_STACK MBED_RAM1_START + MBED_RAM1_SIZE EMPTY - Stack_Size { ; Stack region growing down
46
48
}
47
49
}
You can’t perform that action at this time.
0 commit comments