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:
138:093f2bd7b9eb
Release 147 of the mbed library.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
<> 138:093f2bd7b9eb 1 #! armcc -E
Kojto 122:f9eeca106725 2 ; Scatter-Loading Description File
Kojto 122:f9eeca106725 3 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
Kojto 122:f9eeca106725 4 ; Copyright (c) 2015, STMicroelectronics
Kojto 122:f9eeca106725 5 ; All rights reserved.
Kojto 122:f9eeca106725 6 ;
Kojto 122:f9eeca106725 7 ; Redistribution and use in source and binary forms, with or without
Kojto 122:f9eeca106725 8 ; modification, are permitted provided that the following conditions are met:
Kojto 122:f9eeca106725 9 ;
Kojto 122:f9eeca106725 10 ; 1. Redistributions of source code must retain the above copyright notice,
Kojto 122:f9eeca106725 11 ; this list of conditions and the following disclaimer.
Kojto 122:f9eeca106725 12 ; 2. Redistributions in binary form must reproduce the above copyright notice,
Kojto 122:f9eeca106725 13 ; this list of conditions and the following disclaimer in the documentation
Kojto 122:f9eeca106725 14 ; and/or other materials provided with the distribution.
Kojto 122:f9eeca106725 15 ; 3. Neither the name of STMicroelectronics nor the names of its contributors
Kojto 122:f9eeca106725 16 ; may be used to endorse or promote products derived from this software
Kojto 122:f9eeca106725 17 ; without specific prior written permission.
Kojto 122:f9eeca106725 18 ;
Kojto 122:f9eeca106725 19 ; THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
Kojto 122:f9eeca106725 20 ; AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
Kojto 122:f9eeca106725 21 ; IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
Kojto 122:f9eeca106725 22 ; DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
Kojto 122:f9eeca106725 23 ; FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
Kojto 122:f9eeca106725 24 ; DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
Kojto 122:f9eeca106725 25 ; SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
Kojto 122:f9eeca106725 26 ; CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
Kojto 122:f9eeca106725 27 ; OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
Kojto 122:f9eeca106725 28 ; OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Kojto 122:f9eeca106725 29 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
Kojto 122:f9eeca106725 30
<> 138:093f2bd7b9eb 31 #if !defined(MBED_APP_START)
<> 138:093f2bd7b9eb 32 #define MBED_APP_START 0x08000000
<> 138:093f2bd7b9eb 33 #endif
<> 138:093f2bd7b9eb 34
<> 138:093f2bd7b9eb 35 #if !defined(MBED_APP_SIZE)
<> 138:093f2bd7b9eb 36 #define MBED_APP_SIZE 0x200000
<> 138:093f2bd7b9eb 37 #endif
<> 138:093f2bd7b9eb 38
<> 128:9bcdf88f62b0 39 ; 2 MB FLASH (0x200000) + 192 KB SRAM (0x30000)
<> 138:093f2bd7b9eb 40 LR_IROM1 MBED_APP_START MBED_APP_SIZE { ; load region size_region
Kojto 122:f9eeca106725 41
<> 138:093f2bd7b9eb 42 ER_IROM1 MBED_APP_START MBED_APP_SIZE { ; load address = execution address
Kojto 122:f9eeca106725 43 *.o (RESET, +First)
Kojto 122:f9eeca106725 44 *(InRoot$$Sections)
Kojto 122:f9eeca106725 45 .ANY (+RO)
Kojto 122:f9eeca106725 46 }
Kojto 122:f9eeca106725 47
Kojto 122:f9eeca106725 48 ; Total: 107 vectors = 428 bytes (0x1AC) to be reserved in RAM
<> 128:9bcdf88f62b0 49 RW_IRAM1 (0x20000000+0x1AC) (0x30000-0x1AC) { ; RW data
Kojto 122:f9eeca106725 50 .ANY (+RW +ZI)
Kojto 122:f9eeca106725 51 }
Kojto 122:f9eeca106725 52
Kojto 122:f9eeca106725 53 }
Kojto 122:f9eeca106725 54