]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - i3-mote/i3-mote.git/blob - Basic-Test-Package/CC2650/Test_CC2650_3wSPI_Master_MSP432_SlaveIRQ/CC2650_I3M.cmd
Added Test Wake-Up
[i3-mote/i3-mote.git] / Basic-Test-Package / CC2650 / Test_CC2650_3wSPI_Master_MSP432_SlaveIRQ / CC2650_I3M.cmd
1 /*
2  * Copyright (c) 2015-2016, Texas Instruments Incorporated
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  *
9  * *  Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions and the following disclaimer.
11  *
12  * *  Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  *
16  * *  Neither the name of Texas Instruments Incorporated nor the names of
17  *    its contributors may be used to endorse or promote products derived
18  *    from this software without specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
21  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
22  * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
23  * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
24  * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
25  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
26  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
27  * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
28  * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
29  * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
30  * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31  */
32 /*
33  *  ======== CC2650_LAUNCHXL.cmd ========
34  *  CC26x0F128 PG2 linker configuration file for Code Composer Studio
35  */
37 /* Override default entry point.                                             */
38 --entry_point ResetISR
39 /* Allow main() to take args                                                 */
40 --args 0x8
41 /* Suppress warnings and errors:                                             */
42 /* - 10063: Warning about entry point not being _c_int00                     */
43 /* - 16011, 16012: 8-byte alignment errors. Observed when linking in object  */
44 /*   files compiled using Keil (ARM compiler)                                */
45 --diag_suppress=10063,16011,16012
47 /* The starting address of the application.  Normally the interrupt vectors  */
48 /* must be located at the beginning of the application.                      */
49 #define FLASH_BASE              0x0
50 #define FLASH_SIZE              0x20000
51 #define RAM_BASE                0x20000000
52 #define RAM_SIZE                0x5000
54 /* System memory map */
56 MEMORY
57 {
58     /* Application stored in and executes from internal flash */
59     FLASH (RX) : origin = FLASH_BASE, length = FLASH_SIZE
60     /* Application uses internal RAM for data */
61     SRAM (RWX) : origin = RAM_BASE, length = RAM_SIZE
62 }
64 /* Section allocation in memory */
66 SECTIONS
67 {
68     .text           :   > FLASH
69     .const          :   > FLASH
70     .constdata      :   > FLASH
71     .rodata         :   > FLASH
72     .cinit          :   > FLASH
73     .pinit          :   > FLASH
74     .init_array     :   > FLASH
75     .emb_text       :   > FLASH
76     .ccfg           :   > FLASH (HIGH)
78 #ifdef __TI_COMPILER_VERSION__
79 #if __TI_COMPILER_VERSION__ >= 15009000
80     .TI.ramfunc     : {} load=FLASH, run=SRAM, table(BINIT)
81 #endif
82 #endif
83     .data           :   > SRAM
84     .bss            :   > SRAM
85     .sysmem         :   > SRAM
86     .stack          :   > SRAM (HIGH)
87     .nonretenvar    :   > SRAM
88 }