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.

Committer:
Kojto
Date:
Wed Jul 19 16:46:19 2017 +0100
Revision:
147:a97add6d7e64
Parent:
141:794e51388b66
Release 147 of the mbed library.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Anna Bridge 141:794e51388b66 1 #! armcc -E
<> 128:9bcdf88f62b0 2
Anna Bridge 141:794e51388b66 3 #if !defined(MBED_APP_START)
Anna Bridge 141:794e51388b66 4 #define MBED_APP_START 0x00000000
Anna Bridge 141:794e51388b66 5 #endif
Anna Bridge 141:794e51388b66 6
Anna Bridge 141:794e51388b66 7 #if !defined(MBED_APP_SIZE)
Anna Bridge 141:794e51388b66 8 #define MBED_APP_SIZE 0x00040000
Anna Bridge 141:794e51388b66 9 #endif
Anna Bridge 141:794e51388b66 10
Anna Bridge 141:794e51388b66 11 LR_IROM1 MBED_APP_START {
Anna Bridge 141:794e51388b66 12 ER_IROM1 MBED_APP_START { ; load address = execution address
<> 128:9bcdf88f62b0 13 *(RESET, +First)
<> 128:9bcdf88f62b0 14 *(InRoot$$Sections)
<> 128:9bcdf88f62b0 15 .ANY (+RO)
<> 128:9bcdf88f62b0 16 }
<> 128:9bcdf88f62b0 17
<> 128:9bcdf88f62b0 18 ;UVISOR AlignExpr(+0, 16) { ; 16 byte-aligned
<> 128:9bcdf88f62b0 19 ; uvisor-lib.a (+RW +ZI)
<> 128:9bcdf88f62b0 20 ;}
<> 128:9bcdf88f62b0 21
<> 130:d75b3fe1f5cb 22 ARM_LIB_STACK 0x20000000 EMPTY 0x800 {
<> 128:9bcdf88f62b0 23 }
<> 128:9bcdf88f62b0 24
<> 130:d75b3fe1f5cb 25 ER_IRAMVEC 0x20000800 EMPTY (4*(16 + 64)) { ; Reserve for vectors
<> 128:9bcdf88f62b0 26 }
<> 128:9bcdf88f62b0 27
<> 128:9bcdf88f62b0 28 RW_IRAM1 AlignExpr(+0, 16) { ; 16 byte-aligned
<> 128:9bcdf88f62b0 29 .ANY (+RW +ZI)
<> 128:9bcdf88f62b0 30 }
<> 128:9bcdf88f62b0 31
<> 128:9bcdf88f62b0 32 ARM_LIB_HEAP AlignExpr(+0, 16) EMPTY (0x20000000 + 0x8000 - AlignExpr(ImageLimit(RW_IRAM1), 16)) {
<> 128:9bcdf88f62b0 33 }
<> 128:9bcdf88f62b0 34 }
Anna Bridge 141:794e51388b66 35 ScatterAssert(LoadLimit(LR_IROM1) <= (MBED_APP_START + MBED_APP_SIZE)) ; 256 KB APROM
<> 128:9bcdf88f62b0 36 ScatterAssert(ImageLimit(ARM_LIB_HEAP) <= 0x20008000) ; 32 KB SRAM
<> 128:9bcdf88f62b0 37