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:
124:2241e3a39974
Parent:
122:f9eeca106725
Child:
127:25aea2a3f4e3
--- a/TARGET_TY51822R3/TOOLCHAIN_GCC_ARM/NRF51822.ld	Fri Aug 12 13:04:35 2016 +0200
+++ b/TARGET_TY51822R3/TOOLCHAIN_GCC_ARM/NRF51822.ld	Fri Aug 19 10:17:11 2016 +0100
@@ -2,8 +2,8 @@
 
 MEMORY
 {
-  FLASH (rx) : ORIGIN = 0x0001C000, LENGTH = 0x24000
-  RAM (rwx) :  ORIGIN = 0x20002800, LENGTH = 0x5800
+  FLASH (rx) : ORIGIN = 0x0001B000, LENGTH = 0x25000
+  RAM (rwx) :  ORIGIN = 0x20002ef8, LENGTH = 0x5108
 }
 
 OUTPUT_FORMAT ("elf32-littlearm", "elf32-bigarm", "elf32-littlearm")
@@ -114,6 +114,15 @@
 
 	} > RAM
 
+    __edata = .;
+
+    .fs_data :
+    {
+      PROVIDE(__start_fs_data = .);
+      KEEP(*(.fs_data))
+      PROVIDE(__stop_fs_data = .);
+    } > RAM
+
 	.bss :
 	{
 		. = ALIGN(4);