The official Mbed 2 C/C++ SDK provides the software platform and libraries to build your applications.
Dependents: hello SerialTestv11 SerialTestv12 Sierpinski ... more
mbed 2
This is the mbed 2 library. If you'd like to learn about Mbed OS please see the mbed-os docs.
TARGET_VBLUNO51/TOOLCHAIN_IAR/nRF51822_QFAA.icf@169:a7c7b631e539, 2018-06-22 (annotated)
- Committer:
- Anna Bridge
- Date:
- Fri Jun 22 15:38:59 2018 +0100
- Revision:
- 169:a7c7b631e539
- Parent:
- 146:22da6e220af6
mbed library. Release version 162
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
AnnaBridge | 146:22da6e220af6 | 1 | /*###ICF### Section handled by ICF editor, don't touch! ****/ |
AnnaBridge | 146:22da6e220af6 | 2 | /*-Editor annotation file-*/ |
AnnaBridge | 146:22da6e220af6 | 3 | /* IcfEditorFile="$TOOLKIT_DIR$\config\ide\IcfEditor\cortex_v1_0.xml" */ |
AnnaBridge | 146:22da6e220af6 | 4 | /*-Specials-*/ |
AnnaBridge | 146:22da6e220af6 | 5 | define symbol __ICFEDIT_intvec_start__ = 0x0001b000; |
AnnaBridge | 146:22da6e220af6 | 6 | /*-Memory Regions-*/ |
AnnaBridge | 146:22da6e220af6 | 7 | define symbol __ICFEDIT_region_ROM_start__ = 0x0001b0c0; |
AnnaBridge | 146:22da6e220af6 | 8 | define symbol __ICFEDIT_region_ROM_end__ = 0x0003FFFF; |
AnnaBridge | 146:22da6e220af6 | 9 | define symbol __ICFEDIT_region_RAM_start__ = 0x20002ef8; |
AnnaBridge | 146:22da6e220af6 | 10 | define symbol __ICFEDIT_region_RAM_end__ = 0x20007FFF; |
AnnaBridge | 146:22da6e220af6 | 11 | export symbol __ICFEDIT_region_RAM_start__; |
AnnaBridge | 146:22da6e220af6 | 12 | export symbol __ICFEDIT_region_RAM_end__; |
AnnaBridge | 146:22da6e220af6 | 13 | /*-Sizes-*/ |
AnnaBridge | 146:22da6e220af6 | 14 | /*Heap 1/4 of ram and stack 1/8*/ |
AnnaBridge | 146:22da6e220af6 | 15 | define symbol __ICFEDIT_size_cstack__ = 0x800; |
AnnaBridge | 146:22da6e220af6 | 16 | define symbol __ICFEDIT_size_heap__ = 0x1800; |
AnnaBridge | 146:22da6e220af6 | 17 | /**** End of ICF editor section. ###ICF###*/ |
AnnaBridge | 146:22da6e220af6 | 18 | |
AnnaBridge | 146:22da6e220af6 | 19 | define symbol __code_start_soft_device__ = 0x0; |
AnnaBridge | 146:22da6e220af6 | 20 | |
AnnaBridge | 146:22da6e220af6 | 21 | define memory mem with size = 4G; |
AnnaBridge | 146:22da6e220af6 | 22 | define region ROM_region = mem:[from __ICFEDIT_region_ROM_start__ to __ICFEDIT_region_ROM_end__]; |
AnnaBridge | 146:22da6e220af6 | 23 | define region RAM_region = mem:[from __ICFEDIT_region_RAM_start__ to __ICFEDIT_region_RAM_end__]; |
AnnaBridge | 146:22da6e220af6 | 24 | |
AnnaBridge | 146:22da6e220af6 | 25 | define block CSTACK with alignment = 8, size = __ICFEDIT_size_cstack__ { }; |
AnnaBridge | 146:22da6e220af6 | 26 | define block HEAP with alignment = 8, size = __ICFEDIT_size_heap__ { }; |
AnnaBridge | 146:22da6e220af6 | 27 | |
AnnaBridge | 146:22da6e220af6 | 28 | initialize by copy { readwrite }; |
AnnaBridge | 146:22da6e220af6 | 29 | do not initialize { section .noinit }; |
AnnaBridge | 146:22da6e220af6 | 30 | |
AnnaBridge | 146:22da6e220af6 | 31 | keep { section .intvec }; |
AnnaBridge | 146:22da6e220af6 | 32 | place at address mem:__ICFEDIT_intvec_start__ { readonly section .intvec }; |
AnnaBridge | 146:22da6e220af6 | 33 | place in ROM_region { readonly }; |
AnnaBridge | 146:22da6e220af6 | 34 | place in RAM_region { readwrite, |
AnnaBridge | 146:22da6e220af6 | 35 | block HEAP, |
AnnaBridge | 146:22da6e220af6 | 36 | block CSTACK }; |
AnnaBridge | 146:22da6e220af6 | 37 | |
AnnaBridge | 146:22da6e220af6 | 38 | /*This is used for mbed applications build inside the Embedded workbench |
AnnaBridge | 146:22da6e220af6 | 39 | Applications build with the python scritps use a hex merge so need to merge it |
AnnaBridge | 146:22da6e220af6 | 40 | inside the linker. The linker can only use binary files so the hex merge is not possible |
AnnaBridge | 146:22da6e220af6 | 41 | through the linker. That is why a binary is used instead of a hex image for the embedded project. |
AnnaBridge | 146:22da6e220af6 | 42 | */ |
AnnaBridge | 146:22da6e220af6 | 43 | if(isdefinedsymbol(SOFT_DEVICE_BIN)) |
AnnaBridge | 146:22da6e220af6 | 44 | { |
AnnaBridge | 146:22da6e220af6 | 45 | place at address mem:__code_start_soft_device__ { section .noinit_softdevice }; |
AnnaBridge | 146:22da6e220af6 | 46 | } |