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:
<>
Date:
Thu Mar 30 13:26:47 2017 +0100
Revision:
139:856d2700e60b
Parent:
138:093f2bd7b9eb
Child:
143:86740a56073b
Release 139 of the mbed library

Ports for Upcoming Targets

3934: [Silicon Labs] Update to HAL and devices https://github.com/ARMmbed/mbed-os/pull/3934

Known Issues

There is an issue with LPC1768 failing the 'Semihost file system' test with this release.

Fixes and Changes

3691: [TLS / hw acceleration] AES ECB for NUCLEO_F439ZI https://github.com/ARMmbed/mbed-os/pull/3691
3869: NCS36510: Default range changed from 0 to 950mV - ADC https://github.com/ARMmbed/mbed-os/pull/3869
3893: [STM32F7] Update STM32 Cube version v1.6.0 https://github.com/ARMmbed/mbed-os/pull/3893
3917: Fix mistake register setting in serial_format() https://github.com/ARMmbed/mbed-os/pull/3917
3927: [DELTA_DFBM_NQ620] Add RC calibration setting and revise mbed_overrides.c https://github.com/ARMmbed/mbed-os/pull/3927
3918: [NUC472/M453] Support unique locally administered MAC address and other driver updates https://github.com/ARMmbed/mbed-os/pull/3918
3920: Heap size adjusted to work for both tls-client and mbed-client https://github.com/ARMmbed/mbed-os/pull/3920
3969: NUCLEO_F302R8: Add missing PB_8/PB_9 CAN pins https://github.com/ARMmbed/mbed-os/pull/3969

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Kojto 110:165afa46840b 1 /*###ICF### Section handled by ICF editor, don't touch! ****/
Kojto 110:165afa46840b 2 /*-Editor annotation file-*/
Kojto 110:165afa46840b 3 /* IcfEditorFile="$TOOLKIT_DIR$\config\ide\IcfEditor\cortex_v1_0.xml" */
<> 138:093f2bd7b9eb 4 if (!isdefinedsymbol(MBED_APP_START)) { define symbol MBED_APP_START = 0x08000000; }
<> 138:093f2bd7b9eb 5 if (!isdefinedsymbol(MBED_APP_SIZE)) { define symbol MBED_APP_SIZE = 0x200000; }
Kojto 110:165afa46840b 6 /*-Specials-*/
<> 138:093f2bd7b9eb 7 define symbol __ICFEDIT_intvec_start__ = MBED_APP_START;
Kojto 110:165afa46840b 8 /*-Memory Regions-*/
<> 138:093f2bd7b9eb 9 define symbol __ICFEDIT_region_ROM_start__ = MBED_APP_START;
<> 138:093f2bd7b9eb 10 define symbol __ICFEDIT_region_ROM_end__ = MBED_APP_START + MBED_APP_SIZE - 1;
Kojto 110:165afa46840b 11 define symbol __ICFEDIT_region_NVIC_start__ = 0x20000000;
Kojto 110:165afa46840b 12 define symbol __ICFEDIT_region_NVIC_end__ = 0x200001AF;
Kojto 110:165afa46840b 13 define symbol __ICFEDIT_region_RAM_start__ = 0x200001B0;
Kojto 110:165afa46840b 14 define symbol __ICFEDIT_region_RAM_end__ = 0x2002FFFF;
Kojto 110:165afa46840b 15 define symbol __ICFEDIT_region_CCMRAM_start__ = 0x10000000;
Kojto 110:165afa46840b 16 define symbol __ICFEDIT_region_CCMRAM_end__ = 0x1000FFFF;
Kojto 110:165afa46840b 17 /*-Sizes-*/
<> 139:856d2700e60b 18 /*Heap 64K and stack 24K */
Kojto 110:165afa46840b 19 define symbol __ICFEDIT_size_cstack__ = 0x6000;
<> 139:856d2700e60b 20 define symbol __ICFEDIT_size_heap__ = 0x10000;
Kojto 110:165afa46840b 21 /**** End of ICF editor section. ###ICF###*/
Kojto 110:165afa46840b 22
Kojto 110:165afa46840b 23
Kojto 110:165afa46840b 24 define memory mem with size = 4G;
Kojto 110:165afa46840b 25 define region ROM_region = mem:[from __ICFEDIT_region_ROM_start__ to __ICFEDIT_region_ROM_end__];
Kojto 110:165afa46840b 26 define region RAM_region = mem:[from __ICFEDIT_region_RAM_start__ to __ICFEDIT_region_RAM_end__];
Kojto 110:165afa46840b 27 define region CCMRAM_region = mem:[from __ICFEDIT_region_CCMRAM_start__ to __ICFEDIT_region_CCMRAM_end__];
Kojto 110:165afa46840b 28
Kojto 110:165afa46840b 29 define block CSTACK with alignment = 8, size = __ICFEDIT_size_cstack__ { };
Kojto 110:165afa46840b 30 define block HEAP with alignment = 8, size = __ICFEDIT_size_heap__ { };
Kojto 110:165afa46840b 31
Kojto 110:165afa46840b 32 initialize by copy { readwrite };
Kojto 110:165afa46840b 33 do not initialize { section .noinit };
Kojto 110:165afa46840b 34
Kojto 110:165afa46840b 35 place at address mem:__ICFEDIT_intvec_start__ { readonly section .intvec };
Kojto 110:165afa46840b 36
Kojto 110:165afa46840b 37 place in ROM_region { readonly };
Kojto 110:165afa46840b 38 place in RAM_region { readwrite,
<> 138:093f2bd7b9eb 39 block CSTACK, block HEAP };