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_DISCO_F469NI/TOOLCHAIN_IAR/stm32f469xx.icf@141:794e51388b66, 2017-04-28 (annotated)
- Committer:
- Anna Bridge
- Date:
- Fri Apr 28 13:09:19 2017 +0100
- Revision:
- 141:794e51388b66
- Parent:
- 110:165afa46840b
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 |
---|---|---|---|
Kojto | 110:165afa46840b | 1 | /* [ROM = 2mb = 0x200000] */ |
Kojto | 110:165afa46840b | 2 | define symbol __intvec_start__ = 0x08000000; |
Kojto | 110:165afa46840b | 3 | define symbol __region_ROM_start__ = 0x08000000; |
Kojto | 110:165afa46840b | 4 | define symbol __region_ROM_end__ = 0x081FFFFF; |
Kojto | 110:165afa46840b | 5 | |
Kojto | 110:165afa46840b | 6 | /* [RAM = 384kb = 0x60000] Vector table dynamic copy: 109 vectors = 436 bytes (0x1B4) to be reserved in RAM */ |
Kojto | 110:165afa46840b | 7 | define symbol __NVIC_start__ = 0x20000000; |
Kojto | 110:165afa46840b | 8 | define symbol __NVIC_end__ = 0x200001B3; /* Aligned on 8 bytes */ |
Kojto | 110:165afa46840b | 9 | define symbol __region_RAM_start__ = 0x200001B4; |
Kojto | 110:165afa46840b | 10 | define symbol __region_RAM_end__ = 0x2004FFFF; |
Kojto | 110:165afa46840b | 11 | |
Kojto | 110:165afa46840b | 12 | /* Memory regions */ |
Kojto | 110:165afa46840b | 13 | define memory mem with size = 4G; |
Kojto | 110:165afa46840b | 14 | define region ROM_region = mem:[from __region_ROM_start__ to __region_ROM_end__]; |
Kojto | 110:165afa46840b | 15 | define region RAM_region = mem:[from __region_RAM_start__ to __region_RAM_end__]; |
Kojto | 110:165afa46840b | 16 | |
Kojto | 110:165afa46840b | 17 | /* Stack and Heap */ |
Kojto | 110:165afa46840b | 18 | define symbol __size_cstack__ = 0x4000; |
Anna Bridge |
141:794e51388b66 | 19 | define symbol __size_heap__ = 0x10000; |
Kojto | 110:165afa46840b | 20 | define block CSTACK with alignment = 8, size = __size_cstack__ { }; |
Kojto | 110:165afa46840b | 21 | define block HEAP with alignment = 8, size = __size_heap__ { }; |
Kojto | 110:165afa46840b | 22 | define block STACKHEAP with fixed order { block HEAP, block CSTACK }; |
Kojto | 110:165afa46840b | 23 | |
Kojto | 110:165afa46840b | 24 | initialize by copy with packing = zeros { readwrite }; |
Kojto | 110:165afa46840b | 25 | do not initialize { section .noinit }; |
Kojto | 110:165afa46840b | 26 | |
Kojto | 110:165afa46840b | 27 | place at address mem:__intvec_start__ { readonly section .intvec }; |
Kojto | 110:165afa46840b | 28 | |
Kojto | 110:165afa46840b | 29 | place in ROM_region { readonly }; |
Kojto | 110:165afa46840b | 30 | place in RAM_region { readwrite, block STACKHEAP }; |