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.

Revision:
122:f9eeca106725
Parent:
108:34e6b704fe68
Child:
132:9baf128c2fab
--- a/TARGET_DISCO_L476VG/TOOLCHAIN_GCC_ARM/STM32L476XX.ld	Wed May 25 16:44:06 2016 +0100
+++ b/TARGET_DISCO_L476VG/TOOLCHAIN_GCC_ARM/STM32L476XX.ld	Thu Jul 07 14:34:11 2016 +0100
@@ -112,7 +112,7 @@
         __data_end__ = .;
         _edata = .;
 
-    } > SRAM2
+    } > SRAM1
 
     .bss :
     {
@@ -124,7 +124,7 @@
         . = ALIGN(4);
         __bss_end__ = .;
         _ebss = .;
-    } > SRAM2
+    } > SRAM1
 
     .heap (COPY):
     {
@@ -132,7 +132,7 @@
         end = __end__;
         *(.heap*)
         __HeapLimit = .;
-    } > SRAM2
+    } > SRAM1
 
     /* .stack_dummy section doesn't contains any symbols. It is only
      * used for linker to calculate size of stack sections, and assign
@@ -144,7 +144,7 @@
 
     /* Set stack top to end of RAM, and stack limit move down by
      * size of stack_dummy section */
-    __StackTop = ORIGIN(SRAM2) + LENGTH(SRAM2);
+    __StackTop = ORIGIN(SRAM1) + LENGTH(SRAM1);
     _estack = __StackTop;
     __StackLimit = __StackTop - SIZEOF(.stack_dummy);
     PROVIDE(__stack = __StackTop);