ads1115 only
Fork of mbed by
TARGET_NUCLEO_L031K6/TOOLCHAIN_IAR/stm32l031xx.icf@119:aae6fcc7d9bb, 2016-04-27 (annotated)
- Committer:
- Kojto
- Date:
- Wed Apr 27 12:10:56 2016 -0500
- Revision:
- 119:aae6fcc7d9bb
Release 119 of the mbed library
Changes:
- new targets - EFM32PG_STK3401, NUCLEO_L031K6
- ST - hwflwctl support for NUCLEO_L476RG
- Update STM32CUBE_L0 from v1.2 to v1.5
- STM32F7 - bugfix - The weak function HAL_Delay is overwritten to use us ticker API.
- Maxim - Fixing the send break for the MAXWSNENV and MAX32600MBED
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
Kojto | 119:aae6fcc7d9bb | 1 | /* [ROM = 32kb = 0x8000] */ |
Kojto | 119:aae6fcc7d9bb | 2 | define symbol __intvec_start__ = 0x08000000; |
Kojto | 119:aae6fcc7d9bb | 3 | define symbol __region_ROM_start__ = 0x08000000; |
Kojto | 119:aae6fcc7d9bb | 4 | define symbol __region_ROM_end__ = 0x08007FFF; |
Kojto | 119:aae6fcc7d9bb | 5 | |
Kojto | 119:aae6fcc7d9bb | 6 | /* [RAM = 8kb = 0x2000] Vector table dynamic copy: 48 vectors = 192 bytes (0xC0) to be reserved in RAM */ |
Kojto | 119:aae6fcc7d9bb | 7 | define symbol __NVIC_start__ = 0x20000000; |
Kojto | 119:aae6fcc7d9bb | 8 | define symbol __NVIC_end__ = 0x200000BF; /* Aligned on 8 bytes */ |
Kojto | 119:aae6fcc7d9bb | 9 | define symbol __region_RAM_start__ = 0x200000C0; |
Kojto | 119:aae6fcc7d9bb | 10 | define symbol __region_RAM_end__ = 0x20001FFF; |
Kojto | 119:aae6fcc7d9bb | 11 | |
Kojto | 119:aae6fcc7d9bb | 12 | /* Memory regions */ |
Kojto | 119:aae6fcc7d9bb | 13 | define memory mem with size = 4G; |
Kojto | 119:aae6fcc7d9bb | 14 | define region ROM_region = mem:[from __region_ROM_start__ to __region_ROM_end__]; |
Kojto | 119:aae6fcc7d9bb | 15 | define region RAM_region = mem:[from __region_RAM_start__ to __region_RAM_end__]; |
Kojto | 119:aae6fcc7d9bb | 16 | |
Kojto | 119:aae6fcc7d9bb | 17 | /* Stack and Heap */ |
Kojto | 119:aae6fcc7d9bb | 18 | define symbol __size_cstack__ = 0x500; |
Kojto | 119:aae6fcc7d9bb | 19 | define symbol __size_heap__ = 0x1000; |
Kojto | 119:aae6fcc7d9bb | 20 | define block CSTACK with alignment = 8, size = __size_cstack__ { }; |
Kojto | 119:aae6fcc7d9bb | 21 | define block HEAP with alignment = 8, size = __size_heap__ { }; |
Kojto | 119:aae6fcc7d9bb | 22 | define block STACKHEAP with fixed order { block HEAP, block CSTACK }; |
Kojto | 119:aae6fcc7d9bb | 23 | |
Kojto | 119:aae6fcc7d9bb | 24 | initialize by copy with packing = zeros { readwrite }; |
Kojto | 119:aae6fcc7d9bb | 25 | do not initialize { section .noinit }; |
Kojto | 119:aae6fcc7d9bb | 26 | |
Kojto | 119:aae6fcc7d9bb | 27 | place at address mem:__intvec_start__ { readonly section .intvec }; |
Kojto | 119:aae6fcc7d9bb | 28 | |
Kojto | 119:aae6fcc7d9bb | 29 | place in ROM_region { readonly }; |
Kojto | 119:aae6fcc7d9bb | 30 | place in RAM_region { readwrite, block STACKHEAP }; |