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:
Wed Apr 12 16:07:08 2017 +0100
Revision:
140:97feb9bacc10
Parent:
108:34e6b704fe68
Child:
152:235179ab3f27
Release 140 of the mbed library

Ports for Upcoming Targets

3841: Add nRf52840 target https://github.com/ARMmbed/mbed-os/pull/3841
3992: Introducing UBLOX_C030 platform. https://github.com/ARMmbed/mbed-os/pull/3992

Fixes and Changes

3951: [NUCLEO_F303ZE] Correct ARDUINO pin https://github.com/ARMmbed/mbed-os/pull/3951
4021: Fixing a macro to detect when RTOS was in use for the NRF52840_DK https://github.com/ARMmbed/mbed-os/pull/4021
3979: KW24D: Add missing SPI defines and Arduino connector definitions https://github.com/ARMmbed/mbed-os/pull/3979
3990: UBLOX_C027: construct a ticker-based wait, rather than calling wait_ms(), in the https://github.com/ARMmbed/mbed-os/pull/3990
4003: Fixed OBOE in async serial tx for NRF52 target, fixes #4002 https://github.com/ARMmbed/mbed-os/pull/4003
4012: STM32: Correct I2C master error handling https://github.com/ARMmbed/mbed-os/pull/4012
4020: NUCLEO_L011K4 remove unsupported tool chain files https://github.com/ARMmbed/mbed-os/pull/4020
4065: K66F: Move bss section to m_data_2 Section https://github.com/ARMmbed/mbed-os/pull/4065
4014: Issue 3763: Reduce heap allocation in the GCC linker file https://github.com/ARMmbed/mbed-os/pull/4014
4030: [STM32L0] reduce IAR heap and stack size for small targets https://github.com/ARMmbed/mbed-os/pull/4030
4109: NUCLEO_L476RG : minor serial pin update https://github.com/ARMmbed/mbed-os/pull/4109
3982: Ticker - kl25z bugfix for handling events in the past https://github.com/ARMmbed/mbed-os/pull/3982

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Kojto 108:34e6b704fe68 1 /*###ICF### Section handled by ICF editor, don't touch! ****/
Kojto 108:34e6b704fe68 2 /*-Editor annotation file-*/
Kojto 108:34e6b704fe68 3 /* IcfEditorFile="$TOOLKIT_DIR$\config\ide\IcfEditor\cortex_v1_0.xml" */
Kojto 108:34e6b704fe68 4 /*-Specials-*/
Kojto 108:34e6b704fe68 5 define symbol __ICFEDIT_intvec_start__ = 0x08000000;
Kojto 108:34e6b704fe68 6 /*-Memory Regions-*/
Kojto 108:34e6b704fe68 7 define symbol __ICFEDIT_region_ROM_start__ = 0x08000000;
Kojto 108:34e6b704fe68 8 define symbol __ICFEDIT_region_ROM_end__ = 0x0801FFFF;
Kojto 108:34e6b704fe68 9 define symbol __ICFEDIT_region_RAM_start__ = 0x200000C0;
Kojto 108:34e6b704fe68 10 define symbol __ICFEDIT_region_RAM_end__ = 0x20003FFF;
Kojto 108:34e6b704fe68 11 /*-Sizes-*/
Kojto 108:34e6b704fe68 12 define symbol __ICFEDIT_size_cstack__ = 0x800;
Kojto 108:34e6b704fe68 13 define symbol __ICFEDIT_size_heap__ = 0x1000;
Kojto 108:34e6b704fe68 14 /**** End of ICF editor section. ###ICF###*/
bogdanm 92:4fc01daae5a5 15
bogdanm 92:4fc01daae5a5 16 define memory mem with size = 4G;
Kojto 108:34e6b704fe68 17 define region ROM_region = mem:[from __ICFEDIT_region_ROM_start__ to __ICFEDIT_region_ROM_end__];
Kojto 108:34e6b704fe68 18 define region RAM_region = mem:[from __ICFEDIT_region_RAM_start__ to __ICFEDIT_region_RAM_end__];
bogdanm 92:4fc01daae5a5 19
Kojto 108:34e6b704fe68 20 define block CSTACK with alignment = 8, size = __ICFEDIT_size_cstack__ { };
Kojto 108:34e6b704fe68 21 define block HEAP with alignment = 8, size = __ICFEDIT_size_heap__ { };
bogdanm 92:4fc01daae5a5 22
Kojto 108:34e6b704fe68 23 initialize by copy { readwrite };
bogdanm 92:4fc01daae5a5 24 do not initialize { section .noinit };
bogdanm 92:4fc01daae5a5 25
Kojto 108:34e6b704fe68 26 place at address mem:__ICFEDIT_intvec_start__ { readonly section .intvec };
bogdanm 92:4fc01daae5a5 27
bogdanm 92:4fc01daae5a5 28 place in ROM_region { readonly };
Kojto 108:34e6b704fe68 29 place in RAM_region { readwrite,
Kojto 108:34e6b704fe68 30 block CSTACK, block HEAP };
Kojto 108:34e6b704fe68 31
Kojto 108:34e6b704fe68 32 export symbol __ICFEDIT_region_RAM_start__;
Kojto 108:34e6b704fe68 33 export symbol __ICFEDIT_region_RAM_end__;
Kojto 108:34e6b704fe68 34