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:
Fri Apr 28 13:09:19 2017 +0100
Revision:
141:794e51388b66
Parent:
136:ef9c61f8c49f
Release 141 of the mbed library

Ports for Upcoming Targets


Fixes and Changes

4008: [NUC472/M453] Support Bootloader and FlashIAP https://github.com/ARMmbed/mbed-os/pull/4008
4102: Add SCL and SDA defs for I2C[0-2]; redefine I2C_[SCL,SDA] to I2C2 https://github.com/ARMmbed/mbed-os/pull/4102
4118: STM32F4 Internal ADC channels rework https://github.com/ARMmbed/mbed-os/pull/4118
4126: STM32F4 : remove SERIAL_TX and SERIAL_RX from available pins https://github.com/ARMmbed/mbed-os/pull/4126
4148: Revert "STM32F4 Internal ADC channels rework" https://github.com/ARMmbed/mbed-os/pull/4148
4152: STM32F4 Internal ADC channels rework https://github.com/ARMmbed/mbed-os/pull/4152
4074: [Silicon Labs] Update pinout https://github.com/ARMmbed/mbed-os/pull/4074
4133: U-BLOX_C030: Default XTAL is now 12MHz onboard. Option to use Debug 8MHz https://github.com/ARMmbed/mbed-os/pull/4133
4142: EFM32: Fixed `pwmout_all_inactive` being inversed https://github.com/ARMmbed/mbed-os/pull/4142
4016: [NRF5]: fix rtc overflow-while-set-timestamp issue https://github.com/ARMmbed/mbed-os/pull/4016
4031: STM32 increase IAR heap size for big RAM targets https://github.com/ARMmbed/mbed-os/pull/4031
4137: MCUXpresso: Update ARM linker files to eliminate reserving RAM for stack & heap https://github.com/ARMmbed/mbed-os/pull/4137
4176: STM32L4 Internal ADC channels rework https://github.com/ARMmbed/mbed-os/pull/4176
4154: STM32F7 Internal ADC channels rework https://github.com/ARMmbed/mbed-os/pull/4154
4174: [NRF52840]: fix rtc overflow-while-set-timestamp issue https://github.com/ARMmbed/mbed-os/pull/4174
4180: [UBLOX_C030] create target hierarchy for the specific versions of the C030 board https://github.com/ARMmbed/mbed-os/pull/4180
4153: STM32F2: Internal ADC channels rework https://github.com/ARMmbed/mbed-os/pull/4153

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Kojto 122:f9eeca106725 1 /* [ROM = 2048kb = 0x200000] */
Kojto 122:f9eeca106725 2 define symbol __intvec_start__ = 0x08000000;
Kojto 122:f9eeca106725 3 define symbol __region_ROM_start__ = 0x08000000;
Kojto 122:f9eeca106725 4 define symbol __region_ROM_end__ = 0x081FFFFF;
Kojto 122:f9eeca106725 5
Kojto 122:f9eeca106725 6 /* [RAM = 512kb = 0x80000] Vector table dynamic copy: 126 vectors = 504 bytes (0x1F8) to be reserved in RAM */
Kojto 122:f9eeca106725 7 define symbol __NVIC_start__ = 0x20000000;
Kojto 122:f9eeca106725 8 define symbol __NVIC_end__ = 0x200001F7; /* Aligned on 8 bytes */
Kojto 122:f9eeca106725 9 define symbol __region_RAM_start__ = 0x200001F8;
Kojto 122:f9eeca106725 10 define symbol __region_RAM_end__ = 0x2007FFFF;
Kojto 122:f9eeca106725 11
Kojto 122:f9eeca106725 12 define symbol __region_ITCMRAM_start__ = 0x00000000;
Kojto 122:f9eeca106725 13 define symbol __region_ITCMRAM_end__ = 0x00003FFF;
Kojto 122:f9eeca106725 14
Kojto 122:f9eeca106725 15 /* Memory regions */
Kojto 122:f9eeca106725 16 define memory mem with size = 4G;
Kojto 122:f9eeca106725 17 define region ROM_region = mem:[from __region_ROM_start__ to __region_ROM_end__];
Kojto 122:f9eeca106725 18 define region RAM_region = mem:[from __region_RAM_start__ to __region_RAM_end__];
Kojto 122:f9eeca106725 19 define region ITCMRAM_region = mem:[from __region_ITCMRAM_start__ to __region_ITCMRAM_end__];
Kojto 122:f9eeca106725 20
Kojto 122:f9eeca106725 21 /* Stack and Heap */
Kojto 122:f9eeca106725 22 define symbol __size_cstack__ = 0x8000;
Anna Bridge 141:794e51388b66 23 define symbol __size_heap__ = 0x10000;
Kojto 122:f9eeca106725 24 define block CSTACK with alignment = 8, size = __size_cstack__ { };
Kojto 122:f9eeca106725 25 define block HEAP with alignment = 8, size = __size_heap__ { };
Kojto 122:f9eeca106725 26 define block STACKHEAP with fixed order { block HEAP, block CSTACK };
Kojto 122:f9eeca106725 27
Kojto 122:f9eeca106725 28 initialize by copy with packing = zeros { readwrite };
Kojto 122:f9eeca106725 29 do not initialize { section .noinit };
Kojto 122:f9eeca106725 30
Kojto 122:f9eeca106725 31 place at address mem:__intvec_start__ { readonly section .intvec };
Kojto 122:f9eeca106725 32
Kojto 122:f9eeca106725 33 place in ROM_region { readonly };
Kojto 122:f9eeca106725 34 place in RAM_region { readwrite, block STACKHEAP };