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:
127:25aea2a3f4e3
Parent:
123:b0220dba8be7
Child:
128:9bcdf88f62b0
--- a/TARGET_NRF51_DK/TOOLCHAIN_GCC_ARM/NRF51822.ld	Fri Sep 16 13:57:13 2016 +0100
+++ b/TARGET_NRF51_DK/TOOLCHAIN_GCC_ARM/NRF51822.ld	Fri Sep 30 16:49:46 2016 +0100
@@ -107,6 +107,11 @@
 		KEEP(*(.fini_array))
 		PROVIDE_HIDDEN (__fini_array_end = .);
 
+		. = ALIGN(4);
+		PROVIDE(__start_fs_data = .);
+		KEEP(*(.fs_data))
+		PROVIDE(__stop_fs_data = .);
+        
 		*(.jcr)
 		. = ALIGN(4);
 		/* All data end */
@@ -116,13 +121,6 @@
 
     __edata = .;
 
-    .fs_data :
-    {
-      PROVIDE(__start_fs_data = .);
-      KEEP(*(.fs_data))
-      PROVIDE(__stop_fs_data = .);
-    } > RAM
-
 	.bss :
 	{
 		. = ALIGN(4);