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:
Kojto
Date:
Tue Feb 14 11:24:20 2017 +0000
Revision:
136:ef9c61f8c49f
Parent:
128:9bcdf88f62b0
Release 136 of the mbed library

Ports for Upcoming Targets


Fixes and Changes

3432: Target STM USBHOST support https://github.com/ARMmbed/mbed-os/pull/3432
3181: NUCLEO_F207ZG extending PeripheralPins.c: all available alternate functions can be used now https://github.com/ARMmbed/mbed-os/pull/3181
3626: NUCLEO_F412ZG : Add USB Device +Host https://github.com/ARMmbed/mbed-os/pull/3626
3628: Fix warnings https://github.com/ARMmbed/mbed-os/pull/3628
3629: STM32: L0 LL layer https://github.com/ARMmbed/mbed-os/pull/3629
3632: IDE Export support for platform VK_RZ_A1H https://github.com/ARMmbed/mbed-os/pull/3632
3642: Missing IRQ pin fix for platform VK_RZ_A1H https://github.com/ARMmbed/mbed-os/pull/3642
3664: Fix ncs36510 sleep definitions https://github.com/ARMmbed/mbed-os/pull/3664
3655: [STM32F4] Modify folder structure https://github.com/ARMmbed/mbed-os/pull/3655
3657: [STM32L4] Modify folder structure https://github.com/ARMmbed/mbed-os/pull/3657
3658: [STM32F3] Modify folder structure https://github.com/ARMmbed/mbed-os/pull/3658
3685: STM32: I2C: reset state machine https://github.com/ARMmbed/mbed-os/pull/3685
3692: uVisor: Standardize available legacy heap and stack https://github.com/ARMmbed/mbed-os/pull/3692
3621: Fix for #2884, LPC824: export to LPCXpresso, target running with wron https://github.com/ARMmbed/mbed-os/pull/3621
3649: [STM32F7] Modify folder structure https://github.com/ARMmbed/mbed-os/pull/3649
3695: Enforce device_name is valid in targets.json https://github.com/ARMmbed/mbed-os/pull/3695
3723: NCS36510: spi_format function bug fix https://github.com/ARMmbed/mbed-os/pull/3723

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Kojto 91:031413cf7a89 1 /* Linker script to configure memory regions. */
Kojto 91:031413cf7a89 2
Kojto 91:031413cf7a89 3 MEMORY
Kojto 91:031413cf7a89 4 {
Kojto 123:b0220dba8be7 5 FLASH (rx) : ORIGIN = 0x0001B000, LENGTH = 0x25000
Kojto 123:b0220dba8be7 6 RAM (rwx) : ORIGIN = 0x20002ef8, LENGTH = 0x5108
Kojto 91:031413cf7a89 7 }
Kojto 91:031413cf7a89 8
Kojto 91:031413cf7a89 9 OUTPUT_FORMAT ("elf32-littlearm", "elf32-bigarm", "elf32-littlearm")
Kojto 91:031413cf7a89 10
Kojto 91:031413cf7a89 11 /* Linker script to place sections and symbol values. Should be used together
Kojto 91:031413cf7a89 12 * with other linker script that defines memory regions FLASH and RAM.
Kojto 91:031413cf7a89 13 * It references following symbols, which must be defined in code:
Kojto 91:031413cf7a89 14 * Reset_Handler : Entry of reset handler
Kojto 91:031413cf7a89 15 *
Kojto 91:031413cf7a89 16 * It defines following symbols, which code can use without definition:
Kojto 91:031413cf7a89 17 * __exidx_start
Kojto 91:031413cf7a89 18 * __exidx_end
Kojto 91:031413cf7a89 19 * __etext
Kojto 91:031413cf7a89 20 * __data_start__
Kojto 91:031413cf7a89 21 * __preinit_array_start
Kojto 91:031413cf7a89 22 * __preinit_array_end
Kojto 91:031413cf7a89 23 * __init_array_start
Kojto 91:031413cf7a89 24 * __init_array_end
Kojto 91:031413cf7a89 25 * __fini_array_start
Kojto 91:031413cf7a89 26 * __fini_array_end
Kojto 91:031413cf7a89 27 * __data_end__
Kojto 91:031413cf7a89 28 * __bss_start__
Kojto 91:031413cf7a89 29 * __bss_end__
Kojto 91:031413cf7a89 30 * __end__
Kojto 91:031413cf7a89 31 * end
Kojto 91:031413cf7a89 32 * __HeapLimit
Kojto 91:031413cf7a89 33 * __StackLimit
Kojto 91:031413cf7a89 34 * __StackTop
Kojto 91:031413cf7a89 35 * __stack
Kojto 91:031413cf7a89 36 */
Kojto 91:031413cf7a89 37 ENTRY(Reset_Handler)
Kojto 91:031413cf7a89 38
Kojto 91:031413cf7a89 39 SECTIONS
Kojto 91:031413cf7a89 40 {
Kojto 91:031413cf7a89 41 .text :
Kojto 91:031413cf7a89 42 {
Kojto 91:031413cf7a89 43 KEEP(*(.Vectors))
Kojto 91:031413cf7a89 44 *(.text*)
Kojto 91:031413cf7a89 45
Kojto 91:031413cf7a89 46 KEEP(*(.init))
Kojto 91:031413cf7a89 47 KEEP(*(.fini))
Kojto 91:031413cf7a89 48
Kojto 91:031413cf7a89 49 /* .ctors */
Kojto 91:031413cf7a89 50 *crtbegin.o(.ctors)
Kojto 91:031413cf7a89 51 *crtbegin?.o(.ctors)
Kojto 91:031413cf7a89 52 *(EXCLUDE_FILE(*crtend?.o *crtend.o) .ctors)
Kojto 91:031413cf7a89 53 *(SORT(.ctors.*))
Kojto 91:031413cf7a89 54 *(.ctors)
Kojto 91:031413cf7a89 55
Kojto 91:031413cf7a89 56 /* .dtors */
Kojto 91:031413cf7a89 57 *crtbegin.o(.dtors)
Kojto 91:031413cf7a89 58 *crtbegin?.o(.dtors)
Kojto 91:031413cf7a89 59 *(EXCLUDE_FILE(*crtend?.o *crtend.o) .dtors)
Kojto 91:031413cf7a89 60 *(SORT(.dtors.*))
Kojto 91:031413cf7a89 61 *(.dtors)
Kojto 91:031413cf7a89 62
Kojto 91:031413cf7a89 63 *(.rodata*)
Kojto 91:031413cf7a89 64
Kojto 91:031413cf7a89 65 KEEP(*(.eh_frame*))
Kojto 91:031413cf7a89 66 } > FLASH
Kojto 91:031413cf7a89 67
Kojto 91:031413cf7a89 68
Kojto 91:031413cf7a89 69 .ARM.extab :
Kojto 91:031413cf7a89 70 {
Kojto 91:031413cf7a89 71 *(.ARM.extab* .gnu.linkonce.armextab.*)
Kojto 91:031413cf7a89 72 } > FLASH
Kojto 91:031413cf7a89 73
Kojto 91:031413cf7a89 74 __exidx_start = .;
Kojto 91:031413cf7a89 75 .ARM.exidx :
Kojto 91:031413cf7a89 76 {
Kojto 91:031413cf7a89 77 *(.ARM.exidx* .gnu.linkonce.armexidx.*)
Kojto 91:031413cf7a89 78 } > FLASH
Kojto 91:031413cf7a89 79 __exidx_end = .;
Kojto 91:031413cf7a89 80
Kojto 91:031413cf7a89 81 __etext = .;
Kojto 91:031413cf7a89 82
Kojto 91:031413cf7a89 83 .data : AT (__etext)
Kojto 91:031413cf7a89 84 {
Kojto 91:031413cf7a89 85 __data_start__ = .;
Kojto 91:031413cf7a89 86 *(vtable)
Kojto 91:031413cf7a89 87 *(.data*)
Kojto 91:031413cf7a89 88
Kojto 91:031413cf7a89 89 . = ALIGN(4);
Kojto 91:031413cf7a89 90 /* preinit data */
Kojto 91:031413cf7a89 91 PROVIDE_HIDDEN (__preinit_array_start = .);
Kojto 91:031413cf7a89 92 KEEP(*(.preinit_array))
Kojto 91:031413cf7a89 93 PROVIDE_HIDDEN (__preinit_array_end = .);
Kojto 91:031413cf7a89 94
Kojto 91:031413cf7a89 95 . = ALIGN(4);
Kojto 91:031413cf7a89 96 /* init data */
Kojto 91:031413cf7a89 97 PROVIDE_HIDDEN (__init_array_start = .);
Kojto 91:031413cf7a89 98 KEEP(*(SORT(.init_array.*)))
Kojto 91:031413cf7a89 99 KEEP(*(.init_array))
Kojto 91:031413cf7a89 100 PROVIDE_HIDDEN (__init_array_end = .);
Kojto 91:031413cf7a89 101
Kojto 91:031413cf7a89 102
Kojto 91:031413cf7a89 103 . = ALIGN(4);
Kojto 91:031413cf7a89 104 /* finit data */
Kojto 91:031413cf7a89 105 PROVIDE_HIDDEN (__fini_array_start = .);
Kojto 91:031413cf7a89 106 KEEP(*(SORT(.fini_array.*)))
Kojto 91:031413cf7a89 107 KEEP(*(.fini_array))
Kojto 91:031413cf7a89 108 PROVIDE_HIDDEN (__fini_array_end = .);
Kojto 91:031413cf7a89 109
<> 127:25aea2a3f4e3 110 . = ALIGN(4);
<> 127:25aea2a3f4e3 111 PROVIDE(__start_fs_data = .);
<> 127:25aea2a3f4e3 112 KEEP(*(.fs_data))
<> 127:25aea2a3f4e3 113 PROVIDE(__stop_fs_data = .);
<> 127:25aea2a3f4e3 114
Kojto 91:031413cf7a89 115 *(.jcr)
Kojto 91:031413cf7a89 116 . = ALIGN(4);
Kojto 91:031413cf7a89 117 /* All data end */
Kojto 91:031413cf7a89 118 __data_end__ = .;
Kojto 91:031413cf7a89 119
Kojto 91:031413cf7a89 120 } > RAM
Kojto 91:031413cf7a89 121
Kojto 123:b0220dba8be7 122 __edata = .;
<> 128:9bcdf88f62b0 123
<> 128:9bcdf88f62b0 124 .noinit :
<> 128:9bcdf88f62b0 125 {
<> 128:9bcdf88f62b0 126 PROVIDE(__start_noinit = .);
<> 128:9bcdf88f62b0 127 KEEP(*(.noinit))
<> 128:9bcdf88f62b0 128 PROVIDE(__stop_noinit = .);
<> 128:9bcdf88f62b0 129 } > RAM
Kojto 123:b0220dba8be7 130
Kojto 91:031413cf7a89 131 .bss :
Kojto 91:031413cf7a89 132 {
Kojto 91:031413cf7a89 133 . = ALIGN(4);
Kojto 91:031413cf7a89 134 __bss_start__ = .;
Kojto 91:031413cf7a89 135 *(.bss*)
Kojto 91:031413cf7a89 136 *(COMMON)
Kojto 91:031413cf7a89 137 . = ALIGN(4);
Kojto 91:031413cf7a89 138 __bss_end__ = .;
Kojto 91:031413cf7a89 139 } > RAM
Kojto 91:031413cf7a89 140
Kojto 122:f9eeca106725 141 .heap (NOLOAD):
Kojto 91:031413cf7a89 142 {
Kojto 91:031413cf7a89 143 __end__ = .;
Kojto 91:031413cf7a89 144 end = __end__;
Kojto 122:f9eeca106725 145 __HeapBase = .;
Kojto 91:031413cf7a89 146 *(.heap*)
Kojto 122:f9eeca106725 147 . = ORIGIN(RAM) + LENGTH(RAM) - Stack_Size;
Kojto 91:031413cf7a89 148 __HeapLimit = .;
Kojto 91:031413cf7a89 149 } > RAM
Kojto 91:031413cf7a89 150
Kojto 91:031413cf7a89 151 /* .stack_dummy section doesn't contains any symbols. It is only
Kojto 91:031413cf7a89 152 * used for linker to calculate size of stack sections, and assign
Kojto 91:031413cf7a89 153 * values to stack symbols later */
Kojto 122:f9eeca106725 154 .stack_dummy (NOLOAD):
Kojto 91:031413cf7a89 155 {
Kojto 91:031413cf7a89 156 *(.stack*)
Kojto 91:031413cf7a89 157 } > RAM
Kojto 91:031413cf7a89 158
Kojto 91:031413cf7a89 159 /* Set stack top to end of RAM, and stack limit move down by
Kojto 91:031413cf7a89 160 * size of stack_dummy section */
Kojto 91:031413cf7a89 161 __StackTop = ORIGIN(RAM) + LENGTH(RAM);
Kojto 91:031413cf7a89 162 __StackLimit = __StackTop - SIZEOF(.stack_dummy);
Kojto 91:031413cf7a89 163 PROVIDE(__stack = __StackTop);
Kojto 91:031413cf7a89 164
Kojto 91:031413cf7a89 165 /* Check if data + heap + stack exceeds RAM limit */
Kojto 91:031413cf7a89 166 ASSERT(__StackLimit >= __HeapLimit, "region RAM overflowed with stack")
Kojto 91:031413cf7a89 167 }