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 May 10 11:31:27 2017 +0100
Revision:
142:4eea097334d6
Parent:
TARGET_THUNDERBOARD_SENSE_12/TOOLCHAIN_IAR/efr32mg12p332f1024gl125.icf@139:856d2700e60b
Child:
145:64910690c574
Release 142 of the mbed library

Ports for Upcoming Targets


Fixes and Changes

4059: [Silicon Labs] Rename targets https://github.com/ARMmbed/mbed-os/pull/4059
4187: [NCS36510] Reduce default heap size allocated by IAR to 1/4 of RAM https://github.com/ARMmbed/mbed-os/pull/4187
4225: fixed missing device_name for xDot and removed progen https://github.com/ARMmbed/mbed-os/pull/4225
4251: Fix C++11 build error w/ u-blox EVK-ODIN-W2 https://github.com/ARMmbed/mbed-os/pull/4251
4236: STM32 Fixed warning related to __packed redefinition https://github.com/ARMmbed/mbed-os/pull/4236
4190: LPC4088: Enable LWIP feature https://github.com/ARMmbed/mbed-os/pull/4190
4260: Inherit Xadow M0 target from LPC11U35_501 https://github.com/ARMmbed/mbed-os/pull/4260
4249: Add consistent button names across targets https://github.com/ARMmbed/mbed-os/pull/4249

Who changed what in which revision?

UserRevisionLine numberNew contents of line
<> 139:856d2700e60b 1 /*###ICF### Section handled by ICF editor, don't touch! ****/
<> 139:856d2700e60b 2 /*-Editor annotation file-*/
<> 139:856d2700e60b 3 /* IcfEditorFile="$TOOLKIT_DIR$\config\ide\IcfEditor\cortex_v1_0.xml" */
<> 139:856d2700e60b 4 /*-Specials-*/
<> 139:856d2700e60b 5 define symbol __ICFEDIT_intvec_start__ = 0x00000000;
<> 139:856d2700e60b 6 /*-Memory Regions-*/
<> 139:856d2700e60b 7 define symbol __ICFEDIT_region_ROM_start__ = 0x00000000;
<> 139:856d2700e60b 8 define symbol __ICFEDIT_region_ROM_end__ = 0x000FFFFF;
<> 139:856d2700e60b 9 define symbol __NVIC_start__ = 0x20000000;
<> 139:856d2700e60b 10 define symbol __NVIC_end__ = 0x2000010B;
<> 139:856d2700e60b 11 define symbol __ICFEDIT_region_RAM_start__ = 0x2000010C;
<> 139:856d2700e60b 12 define symbol __ICFEDIT_region_RAM_end__ = 0x2003FFFF;
<> 139:856d2700e60b 13 /*-Sizes-*/
<> 139:856d2700e60b 14 /*Heap 1/4 of ram and stack 1/8*/
<> 139:856d2700e60b 15 define symbol __ICFEDIT_size_cstack__ = 0x4000;
<> 139:856d2700e60b 16 define symbol __ICFEDIT_size_heap__ = 0x10000;
<> 139:856d2700e60b 17 /**** End of ICF editor section. ###ICF###*/
<> 139:856d2700e60b 18
<> 139:856d2700e60b 19 define memory mem with size = 4G;
<> 139:856d2700e60b 20 define region ROM_region = mem:[from __ICFEDIT_region_ROM_start__ to __ICFEDIT_region_ROM_end__];
<> 139:856d2700e60b 21 define region RAM_region = mem:[from __ICFEDIT_region_RAM_start__ to __ICFEDIT_region_RAM_end__];
<> 139:856d2700e60b 22
<> 139:856d2700e60b 23 define block CSTACK with alignment = 8, size = __ICFEDIT_size_cstack__ { };
<> 139:856d2700e60b 24 define block HEAP with alignment = 8, size = __ICFEDIT_size_heap__ { };
<> 139:856d2700e60b 25
<> 139:856d2700e60b 26 initialize by copy { readwrite };
<> 139:856d2700e60b 27 do not initialize { section .noinit };
<> 139:856d2700e60b 28
<> 139:856d2700e60b 29 keep { section .intvec };
<> 139:856d2700e60b 30 place at address mem:__ICFEDIT_intvec_start__ { readonly section .intvec };
<> 139:856d2700e60b 31 place in ROM_region { readonly };
<> 139:856d2700e60b 32 place in RAM_region { readwrite, block CSTACK, block HEAP };
<> 139:856d2700e60b 33