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:
132:9baf128c2fab
Parent:
120:7c328cabac7e
Child:
136:ef9c61f8c49f
--- a/TARGET_DISCO_L476VG/TOOLCHAIN_IAR/stm32l476xx.icf	Thu Dec 15 11:17:48 2016 +0000
+++ b/TARGET_DISCO_L476VG/TOOLCHAIN_IAR/stm32l476xx.icf	Tue Dec 20 15:36:52 2016 +0000
@@ -19,8 +19,8 @@
 define region SRAM1_region = mem:[from __region_SRAM1_start__ to __region_SRAM1_end__];
 
 /* Stack 1/8 and Heap 1/4 of RAM */
-define symbol __size_cstack__ = 0x4000;
-define symbol __size_heap__   = 0x8000;
+define symbol __size_cstack__ = 0x8000;
+define symbol __size_heap__   = 0xa000;
 define block CSTACK    with alignment = 8, size = __size_cstack__   { };
 define block HEAP      with alignment = 8, size = __size_heap__     { };
 define block STACKHEAP with fixed order { block HEAP, block CSTACK };
@@ -31,5 +31,5 @@
 place at address mem:__intvec_start__ { readonly section .intvec };
 
 place in ROM_region   { readonly };
-place in SRAM2_region   { readwrite };
-place in SRAM1_region { block STACKHEAP };
+place in SRAM1_region { readwrite, block STACKHEAP };
+place in SRAM2_region   {  };