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.
TARGET_NUCLEO_F412ZG/TOOLCHAIN_IAR/stm32f412xx.icf@141:794e51388b66, 2017-04-28 (annotated)
- Committer:
- Anna Bridge
- Date:
- Fri Apr 28 13:09:19 2017 +0100
- Revision:
- 141:794e51388b66
- Parent:
- 136:ef9c61f8c49f
- Child:
- 149:e2bfab296f20
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?
User | Revision | Line number | New contents of line |
---|---|---|---|
<> | 132:9baf128c2fab | 1 | /* [ROM = 1024kb = 0x100000] */ |
<> | 132:9baf128c2fab | 2 | define symbol __intvec_start__ = 0x08000000; |
<> | 132:9baf128c2fab | 3 | define symbol __region_ROM_start__ = 0x08000000; |
<> | 132:9baf128c2fab | 4 | define symbol __region_ROM_end__ = 0x080FFFFF; |
<> | 132:9baf128c2fab | 5 | |
<> | 132:9baf128c2fab | 6 | /* [RAM = 256kb = 0x40000] Vector table dynamic copy: 113 vectors = 452 bytes (0x1C4) to be reserved in RAM */ |
<> | 132:9baf128c2fab | 7 | define symbol __NVIC_start__ = 0x20000000; |
<> | 132:9baf128c2fab | 8 | define symbol __NVIC_end__ = 0x200001C7; /* Aligned on 8 bytes */ |
<> | 132:9baf128c2fab | 9 | define symbol __region_RAM_start__ = 0x200001C8; |
<> | 132:9baf128c2fab | 10 | define symbol __region_RAM_end__ = 0x2001FFFF; |
<> | 132:9baf128c2fab | 11 | |
<> | 132:9baf128c2fab | 12 | /* Memory regions */ |
<> | 132:9baf128c2fab | 13 | define memory mem with size = 4G; |
<> | 132:9baf128c2fab | 14 | define region ROM_region = mem:[from __region_ROM_start__ to __region_ROM_end__]; |
<> | 132:9baf128c2fab | 15 | define region RAM_region = mem:[from __region_RAM_start__ to __region_RAM_end__]; |
<> | 132:9baf128c2fab | 16 | |
<> | 132:9baf128c2fab | 17 | /* Stack and Heap */ |
<> | 132:9baf128c2fab | 18 | define symbol __size_cstack__ = 0x8000; |
<> | 132:9baf128c2fab | 19 | define symbol __size_heap__ = 0x10000; |
<> | 132:9baf128c2fab | 20 | define block CSTACK with alignment = 8, size = __size_cstack__ { }; |
<> | 132:9baf128c2fab | 21 | define block HEAP with alignment = 8, size = __size_heap__ { }; |
<> | 132:9baf128c2fab | 22 | define block STACKHEAP with fixed order { block HEAP, block CSTACK }; |
<> | 132:9baf128c2fab | 23 | |
<> | 132:9baf128c2fab | 24 | initialize by copy with packing = zeros { readwrite }; |
<> | 132:9baf128c2fab | 25 | do not initialize { section .noinit }; |
<> | 132:9baf128c2fab | 26 | |
<> | 132:9baf128c2fab | 27 | place at address mem:__intvec_start__ { readonly section .intvec }; |
<> | 132:9baf128c2fab | 28 | |
<> | 132:9baf128c2fab | 29 | place in ROM_region { readonly }; |
<> | 132:9baf128c2fab | 30 | place in RAM_region { readwrite, block STACKHEAP }; |