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:
171:3a7713b1edbc
Parent:
160:5571c4ff569f
--- a/TARGET_NUCLEO_F413ZH/TOOLCHAIN_ARM_MICRO/stm32f413xh.sct	Thu Sep 06 13:39:34 2018 +0100
+++ b/TARGET_NUCLEO_F413ZH/TOOLCHAIN_ARM_MICRO/stm32f413xh.sct	Thu Nov 08 11:45:42 2018 +0000
@@ -1,3 +1,4 @@
+#! armcc -E
 ; Scatter-Loading Description File
 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
 ; Copyright (c) 2017, STMicroelectronics
@@ -27,15 +28,24 @@
 ; OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
 
-; STM32F413ZH: 1536 KB FLASH (0x150000) + 320 KB SRAM (0x50000)
-LR_IROM1 0x08000000 0x150000  {    ; load region size_region
+#if !defined(MBED_APP_START)
+  #define MBED_APP_START 0x08000000
+#endif
 
-  ER_IROM1 0x08000000 0x150000  {  ; load address = execution address
+; 1536KB FLASH (0x180000)
+#if !defined(MBED_APP_SIZE)
+  #define MBED_APP_SIZE 0x180000
+#endif
+
+LR_IROM1 MBED_APP_START MBED_APP_SIZE  {    ; load region size_region
+
+  ER_IROM1 MBED_APP_START MBED_APP_SIZE  {  ; load address = execution address
    *.o (RESET, +First)
    *(InRoot$$Sections)
    .ANY (+RO)
   }
 
+  ; 320KB SRAM (0x50000)
   ; Total: 118 vectors = 472 bytes (0x1D8) to be reserved in RAM
   RW_IRAM1 (0x20000000+0x1D8) (0x50000-0x1D8)  {  ; RW data
    .ANY (+RW +ZI)