ads1115 only
Fork of mbed by
TARGET_KL82Z/TOOLCHAIN_ARM_STD/MKL82Z128xxx7.sct@135:fce8a9387ed1, 2017-01-17 (annotated)
- Committer:
- kaoshen
- Date:
- Tue Jan 17 23:27:32 2017 +0000
- Revision:
- 135:fce8a9387ed1
- Parent:
- 128:9bcdf88f62b0
333 ADS1115 ADC1
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
<> | 128:9bcdf88f62b0 | 1 | #! armcc -E |
<> | 128:9bcdf88f62b0 | 2 | /* |
<> | 128:9bcdf88f62b0 | 3 | ** ################################################################### |
<> | 128:9bcdf88f62b0 | 4 | ** Processors: MKL82Z128VLH7 |
<> | 128:9bcdf88f62b0 | 5 | ** MKL82Z128VLK7 |
<> | 128:9bcdf88f62b0 | 6 | ** MKL82Z128VLL7 |
<> | 128:9bcdf88f62b0 | 7 | ** MKL82Z128VMC7 |
<> | 128:9bcdf88f62b0 | 8 | ** MKL82Z128VMP7 |
<> | 128:9bcdf88f62b0 | 9 | ** |
<> | 128:9bcdf88f62b0 | 10 | ** Compiler: Keil ARM C/C++ Compiler |
<> | 128:9bcdf88f62b0 | 11 | ** Reference manual: KL82P121M72SF0RM, Rev.2 November 2015 |
<> | 128:9bcdf88f62b0 | 12 | ** Version: rev. 1.5, 2015-09-24 |
<> | 128:9bcdf88f62b0 | 13 | ** Build: b160406 |
<> | 128:9bcdf88f62b0 | 14 | ** |
<> | 128:9bcdf88f62b0 | 15 | ** Abstract: |
<> | 128:9bcdf88f62b0 | 16 | ** Linker file for the Keil ARM C/C++ Compiler |
<> | 128:9bcdf88f62b0 | 17 | ** |
<> | 128:9bcdf88f62b0 | 18 | ** Copyright (c) 2016 Freescale Semiconductor, Inc. |
<> | 128:9bcdf88f62b0 | 19 | ** All rights reserved. |
<> | 128:9bcdf88f62b0 | 20 | ** |
<> | 128:9bcdf88f62b0 | 21 | ** Redistribution and use in source and binary forms, with or without modification, |
<> | 128:9bcdf88f62b0 | 22 | ** are permitted provided that the following conditions are met: |
<> | 128:9bcdf88f62b0 | 23 | ** |
<> | 128:9bcdf88f62b0 | 24 | ** o Redistributions of source code must retain the above copyright notice, this list |
<> | 128:9bcdf88f62b0 | 25 | ** of conditions and the following disclaimer. |
<> | 128:9bcdf88f62b0 | 26 | ** |
<> | 128:9bcdf88f62b0 | 27 | ** o Redistributions in binary form must reproduce the above copyright notice, this |
<> | 128:9bcdf88f62b0 | 28 | ** list of conditions and the following disclaimer in the documentation and/or |
<> | 128:9bcdf88f62b0 | 29 | ** other materials provided with the distribution. |
<> | 128:9bcdf88f62b0 | 30 | ** |
<> | 128:9bcdf88f62b0 | 31 | ** o Neither the name of Freescale Semiconductor, Inc. nor the names of its |
<> | 128:9bcdf88f62b0 | 32 | ** contributors may be used to endorse or promote products derived from this |
<> | 128:9bcdf88f62b0 | 33 | ** software without specific prior written permission. |
<> | 128:9bcdf88f62b0 | 34 | ** |
<> | 128:9bcdf88f62b0 | 35 | ** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND |
<> | 128:9bcdf88f62b0 | 36 | ** ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
<> | 128:9bcdf88f62b0 | 37 | ** WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
<> | 128:9bcdf88f62b0 | 38 | ** DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR |
<> | 128:9bcdf88f62b0 | 39 | ** ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
<> | 128:9bcdf88f62b0 | 40 | ** (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
<> | 128:9bcdf88f62b0 | 41 | ** LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON |
<> | 128:9bcdf88f62b0 | 42 | ** ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
<> | 128:9bcdf88f62b0 | 43 | ** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
<> | 128:9bcdf88f62b0 | 44 | ** SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
<> | 128:9bcdf88f62b0 | 45 | ** |
<> | 128:9bcdf88f62b0 | 46 | ** http: www.freescale.com |
<> | 128:9bcdf88f62b0 | 47 | ** mail: support@freescale.com |
<> | 128:9bcdf88f62b0 | 48 | ** |
<> | 128:9bcdf88f62b0 | 49 | ** ################################################################### |
<> | 128:9bcdf88f62b0 | 50 | */ |
<> | 128:9bcdf88f62b0 | 51 | #define __ram_vector_table__ 1 |
<> | 128:9bcdf88f62b0 | 52 | |
<> | 128:9bcdf88f62b0 | 53 | /* Heap 1/4 of ram and stack 1/8 */ |
<> | 128:9bcdf88f62b0 | 54 | #define __stack_size__ 0x3000 |
<> | 128:9bcdf88f62b0 | 55 | #define __heap_size__ 0x6000 |
<> | 128:9bcdf88f62b0 | 56 | |
<> | 128:9bcdf88f62b0 | 57 | #if (defined(__ram_vector_table__)) |
<> | 128:9bcdf88f62b0 | 58 | #define __ram_vector_table_size__ 0x00000140 |
<> | 128:9bcdf88f62b0 | 59 | #else |
<> | 128:9bcdf88f62b0 | 60 | #define __ram_vector_table_size__ 0x00000000 |
<> | 128:9bcdf88f62b0 | 61 | #endif |
<> | 128:9bcdf88f62b0 | 62 | |
<> | 128:9bcdf88f62b0 | 63 | #define m_interrupts_start 0x00000000 |
<> | 128:9bcdf88f62b0 | 64 | #define m_interrupts_size 0x00000140 |
<> | 128:9bcdf88f62b0 | 65 | |
<> | 128:9bcdf88f62b0 | 66 | #define m_bootloader_config_start 0x000003C0 |
<> | 128:9bcdf88f62b0 | 67 | #define m_bootloader_config_size 0x00000040 |
<> | 128:9bcdf88f62b0 | 68 | |
<> | 128:9bcdf88f62b0 | 69 | #define m_flash_config_start 0x00000400 |
<> | 128:9bcdf88f62b0 | 70 | #define m_flash_config_size 0x00000010 |
<> | 128:9bcdf88f62b0 | 71 | |
<> | 128:9bcdf88f62b0 | 72 | #define m_text_start 0x00000410 |
<> | 128:9bcdf88f62b0 | 73 | #define m_text_size 0x0001FBF0 |
<> | 128:9bcdf88f62b0 | 74 | |
<> | 128:9bcdf88f62b0 | 75 | #define m_interrupts_ram_start 0x1FFFA000 |
<> | 128:9bcdf88f62b0 | 76 | #define m_interrupts_ram_size __ram_vector_table_size__ |
<> | 128:9bcdf88f62b0 | 77 | |
<> | 128:9bcdf88f62b0 | 78 | #define m_data_start (m_interrupts_ram_start + m_interrupts_ram_size) |
<> | 128:9bcdf88f62b0 | 79 | #define m_data_size (0x00018000 - m_interrupts_ram_size) |
<> | 128:9bcdf88f62b0 | 80 | |
<> | 128:9bcdf88f62b0 | 81 | #if (defined(__usb_use_usbram__)) |
<> | 128:9bcdf88f62b0 | 82 | #define m_usb_sram_start 0x40100000 |
<> | 128:9bcdf88f62b0 | 83 | #define m_usb_sram_size 0x00000800 |
<> | 128:9bcdf88f62b0 | 84 | #endif |
<> | 128:9bcdf88f62b0 | 85 | |
<> | 128:9bcdf88f62b0 | 86 | /* USB BDT size */ |
<> | 128:9bcdf88f62b0 | 87 | #define usb_bdt_size 0x200 |
<> | 128:9bcdf88f62b0 | 88 | /* Sizes */ |
<> | 128:9bcdf88f62b0 | 89 | #if (defined(__stack_size__)) |
<> | 128:9bcdf88f62b0 | 90 | #define Stack_Size __stack_size__ |
<> | 128:9bcdf88f62b0 | 91 | #else |
<> | 128:9bcdf88f62b0 | 92 | #define Stack_Size 0x0400 |
<> | 128:9bcdf88f62b0 | 93 | #endif |
<> | 128:9bcdf88f62b0 | 94 | |
<> | 128:9bcdf88f62b0 | 95 | #if (defined(__heap_size__)) |
<> | 128:9bcdf88f62b0 | 96 | #define Heap_Size __heap_size__ |
<> | 128:9bcdf88f62b0 | 97 | #else |
<> | 128:9bcdf88f62b0 | 98 | #define Heap_Size 0x0400 |
<> | 128:9bcdf88f62b0 | 99 | #endif |
<> | 128:9bcdf88f62b0 | 100 | |
<> | 128:9bcdf88f62b0 | 101 | LR_m_text m_interrupts_start m_text_start+m_text_size-m_interrupts_start { ; load region size_region |
<> | 128:9bcdf88f62b0 | 102 | VECTOR_ROM m_interrupts_start m_interrupts_size { ; load address = execution address |
<> | 128:9bcdf88f62b0 | 103 | * (RESET,+FIRST) |
<> | 128:9bcdf88f62b0 | 104 | } |
<> | 128:9bcdf88f62b0 | 105 | ER_m_bootloader_config m_bootloader_config_start FIXED m_bootloader_config_size { ; load address = execution address |
<> | 128:9bcdf88f62b0 | 106 | * (BootloaderConfig) |
<> | 128:9bcdf88f62b0 | 107 | } |
<> | 128:9bcdf88f62b0 | 108 | ER_m_flash_config m_flash_config_start FIXED m_flash_config_size { ; load address = execution address |
<> | 128:9bcdf88f62b0 | 109 | * (FlashConfig) |
<> | 128:9bcdf88f62b0 | 110 | } |
<> | 128:9bcdf88f62b0 | 111 | ER_m_text m_text_start m_text_size { ; load address = execution address |
<> | 128:9bcdf88f62b0 | 112 | * (InRoot$$Sections) |
<> | 128:9bcdf88f62b0 | 113 | .ANY (+RO) |
<> | 128:9bcdf88f62b0 | 114 | } |
<> | 128:9bcdf88f62b0 | 115 | |
<> | 128:9bcdf88f62b0 | 116 | #if (defined(__ram_vector_table__)) |
<> | 128:9bcdf88f62b0 | 117 | VECTOR_RAM m_interrupts_ram_start EMPTY m_interrupts_ram_size { |
<> | 128:9bcdf88f62b0 | 118 | } |
<> | 128:9bcdf88f62b0 | 119 | #else |
<> | 128:9bcdf88f62b0 | 120 | VECTOR_RAM m_interrupts_start EMPTY 0 { |
<> | 128:9bcdf88f62b0 | 121 | } |
<> | 128:9bcdf88f62b0 | 122 | #endif |
<> | 128:9bcdf88f62b0 | 123 | RW_m_data m_data_start m_data_size-Stack_Size-Heap_Size { ; RW data |
<> | 128:9bcdf88f62b0 | 124 | .ANY (+RW +ZI) |
<> | 128:9bcdf88f62b0 | 125 | } |
<> | 128:9bcdf88f62b0 | 126 | RW_IRAM1 +0 { ; Heap region growing up |
<> | 128:9bcdf88f62b0 | 127 | } |
<> | 128:9bcdf88f62b0 | 128 | } |
<> | 128:9bcdf88f62b0 | 129 | |
<> | 128:9bcdf88f62b0 | 130 | #if (defined(__usb_use_usbram__)) |
<> | 128:9bcdf88f62b0 | 131 | LR_m_usb_bdt m_usb_sram_start usb_bdt_size { |
<> | 128:9bcdf88f62b0 | 132 | ER_m_usb_bdt m_usb_sram_start UNINIT usb_bdt_size { |
<> | 128:9bcdf88f62b0 | 133 | * (m_usb_bdt) |
<> | 128:9bcdf88f62b0 | 134 | } |
<> | 128:9bcdf88f62b0 | 135 | } |
<> | 128:9bcdf88f62b0 | 136 | |
<> | 128:9bcdf88f62b0 | 137 | LR_m_usb_ram (m_usb_sram_start + usb_bdt_size) (m_usb_sram_size - usb_bdt_size) { |
<> | 128:9bcdf88f62b0 | 138 | ER_m_usb_ram (m_usb_sram_start + usb_bdt_size) UNINIT (m_usb_sram_size - usb_bdt_size) { |
<> | 128:9bcdf88f62b0 | 139 | * (m_usb_global) |
<> | 128:9bcdf88f62b0 | 140 | } |
<> | 128:9bcdf88f62b0 | 141 | } |
<> | 128:9bcdf88f62b0 | 142 | #endif |
<> | 128:9bcdf88f62b0 | 143 |