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.

Committer:
Anna Bridge
Date:
Wed Jan 17 16:13:02 2018 +0000
Revision:
160:5571c4ff569f
Parent:
158:1c57384330a6
mbed library. Release version 158

Who changed what in which revision?

UserRevisionLine numberNew contents of line
AnnaBridge 158:1c57384330a6 1 /*###ICF### Section handled by ICF editor, don't touch! ****/
AnnaBridge 158:1c57384330a6 2 /*-Editor annotation file-*/
AnnaBridge 158:1c57384330a6 3 /* IcfEditorFile="$TOOLKIT_DIR$\config\ide\IcfEditor\cortex_v1_0.xml" */
AnnaBridge 158:1c57384330a6 4 /*-Specials-*/
AnnaBridge 158:1c57384330a6 5 define symbol __ICFEDIT_intvec_start__ = 0x1c000;
AnnaBridge 158:1c57384330a6 6 /*-Memory Regions-*/
AnnaBridge 158:1c57384330a6 7 define symbol __ICFEDIT_region_ROM_start__ = 0x1c000;
AnnaBridge 158:1c57384330a6 8 define symbol __ICFEDIT_region_ROM_end__ = 0x7ffff;
AnnaBridge 158:1c57384330a6 9 define symbol __ICFEDIT_region_RAM_start__ = 0x20002ef8;
AnnaBridge 158:1c57384330a6 10 define symbol __ICFEDIT_region_RAM_end__ = 0x2000ffff;
AnnaBridge 158:1c57384330a6 11 export symbol __ICFEDIT_region_RAM_start__;
AnnaBridge 158:1c57384330a6 12 export symbol __ICFEDIT_region_RAM_end__;
AnnaBridge 158:1c57384330a6 13 /*-Sizes-*/
AnnaBridge 158:1c57384330a6 14 /*Heap 1/4 of ram and stack 1/8*/
AnnaBridge 158:1c57384330a6 15 define symbol __ICFEDIT_size_cstack__ = 0x800;
AnnaBridge 158:1c57384330a6 16 define symbol __ICFEDIT_size_heap__ = 0x1800;
AnnaBridge 158:1c57384330a6 17 /**** End of ICF editor section. ###ICF###*/
AnnaBridge 158:1c57384330a6 18
AnnaBridge 158:1c57384330a6 19 define symbol __code_start_soft_device__ = 0x0;
AnnaBridge 158:1c57384330a6 20
AnnaBridge 158:1c57384330a6 21 define memory mem with size = 4G;
AnnaBridge 158:1c57384330a6 22 define region ROM_region = mem:[from __ICFEDIT_region_ROM_start__ to __ICFEDIT_region_ROM_end__];
AnnaBridge 158:1c57384330a6 23 define region RAM_region = mem:[from __ICFEDIT_region_RAM_start__ to __ICFEDIT_region_RAM_end__];
AnnaBridge 158:1c57384330a6 24
AnnaBridge 158:1c57384330a6 25 define block CSTACK with alignment = 8, size = __ICFEDIT_size_cstack__ { };
AnnaBridge 158:1c57384330a6 26 define block HEAP with alignment = 8, size = __ICFEDIT_size_heap__ { };
AnnaBridge 158:1c57384330a6 27
AnnaBridge 158:1c57384330a6 28 initialize by copy { readwrite };
AnnaBridge 158:1c57384330a6 29 do not initialize { section .noinit };
AnnaBridge 158:1c57384330a6 30
AnnaBridge 158:1c57384330a6 31 keep { section .intvec };
AnnaBridge 158:1c57384330a6 32 place at address mem:__ICFEDIT_intvec_start__ { readonly section .intvec };
AnnaBridge 158:1c57384330a6 33 place in ROM_region { readonly };
AnnaBridge 158:1c57384330a6 34 place in RAM_region { readwrite,
AnnaBridge 158:1c57384330a6 35 block HEAP,
AnnaBridge 158:1c57384330a6 36 block CSTACK };
AnnaBridge 158:1c57384330a6 37
AnnaBridge 158:1c57384330a6 38 /*This is used for mbed applications build inside the Embedded workbench
AnnaBridge 158:1c57384330a6 39 Applications build with the python scritps use a hex merge so need to merge it
AnnaBridge 158:1c57384330a6 40 inside the linker. The linker can only use binary files so the hex merge is not possible
AnnaBridge 158:1c57384330a6 41 through the linker. That is why a binary is used instead of a hex image for the embedded project.
AnnaBridge 158:1c57384330a6 42 */
AnnaBridge 158:1c57384330a6 43 if(isdefinedsymbol(SOFT_DEVICE_BIN))
AnnaBridge 158:1c57384330a6 44 {
AnnaBridge 158:1c57384330a6 45 place at address mem:__code_start_soft_device__ { section .noinit_softdevice };
AnnaBridge 158:1c57384330a6 46 }