Skip to content

Commit 68d48ea

Browse files
authored
Merge pull request #2337 from pan-/nrf51_export_ram_definition
Export RAM start/stop symbols on NRF51
2 parents a7a9325 + 158c883 commit 68d48ea

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

hal/targets/cmsis/TARGET_NORDIC/TARGET_NRF5/TARGET_MCU_NRF51822_UNIFIED/TOOLCHAIN_IAR/TARGET_MCU_NORDIC_16K/nRF51822_QFAA.icf

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ define symbol __ICFEDIT_region_ROM_start__ = 0x0001b0c0;
88
define symbol __ICFEDIT_region_ROM_end__ = 0x0003FFFF;
99
define symbol __ICFEDIT_region_RAM_start__ = 0x20002ef8;
1010
define symbol __ICFEDIT_region_RAM_end__ = 0x20003FFF;
11+
export symbol __ICFEDIT_region_RAM_start__;
12+
export symbol __ICFEDIT_region_RAM_end__;
1113
/*-Sizes-*/
1214
define symbol __ICFEDIT_size_cstack__ = 0x400;
1315
define symbol __ICFEDIT_size_heap__ = 0x900;

hal/targets/cmsis/TARGET_NORDIC/TARGET_NRF5/TARGET_MCU_NRF51822_UNIFIED/TOOLCHAIN_IAR/TARGET_MCU_NORDIC_32K/nRF51822_QFAA.icf

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ define symbol __ICFEDIT_region_ROM_start__ = 0x0001b0c0;
88
define symbol __ICFEDIT_region_ROM_end__ = 0x0003FFFF;
99
define symbol __ICFEDIT_region_RAM_start__ = 0x20002ef8;
1010
define symbol __ICFEDIT_region_RAM_end__ = 0x20007FFF;
11+
export symbol __ICFEDIT_region_RAM_start__;
12+
export symbol __ICFEDIT_region_RAM_end__;
1113
/*-Sizes-*/
1214
/*Heap 1/4 of ram and stack 1/8*/
1315
define symbol __ICFEDIT_size_cstack__ = 0xc00;

0 commit comments

Comments
 (0)