Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of mbed by
TARGET_UBLOX_C027/TOOLCHAIN_IAR/LPC17xx.icf@90:cb3d968589d8, 2014-10-28 (annotated)
- Committer:
- Kojto
- Date:
- Tue Oct 28 16:40:41 2014 +0000
- Revision:
- 90:cb3d968589d8
- Parent:
- 77:869cf507173a
- Child:
- 93:e188a91d3eaa
Release 90 of the mbed library
Changes:
- Freescale KSDK update (v1.0)
- K22 - new target addition
- KL43Z - new target addition
- Nucleo F091RC - new target addition
- Nucleo L152RE - STM32Cube driver
- Nordic - Softdevice v7.1.0
- Nvic files - BSD License
- LPC824 - various HAL fixes
- Nucleo F411RE - CMSIS - IAR files
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| emilmont | 77:869cf507173a | 1 | /* [ROM] */ |
| emilmont | 77:869cf507173a | 2 | define symbol __intvec_start__ = 0x00000000; |
| emilmont | 77:869cf507173a | 3 | define symbol __region_ROM_start__ = 0x00000000; |
| emilmont | 77:869cf507173a | 4 | define symbol __CRP_start__ = 0x000002FC; |
| emilmont | 77:869cf507173a | 5 | define symbol __CRP_end__ = 0x000002FF; |
| emilmont | 77:869cf507173a | 6 | define symbol __region_ROM_end__ = 0x0007FFFF; |
| emilmont | 77:869cf507173a | 7 | |
| emilmont | 77:869cf507173a | 8 | /* [RAM] Vector table dynamic copy: 8_byte_aligned(49 vect * 4 bytes) = 8_byte_aligned(0xC4) = 0xC8*/ |
| emilmont | 77:869cf507173a | 9 | define symbol __NVIC_start__ = 0x10000000; |
| emilmont | 77:869cf507173a | 10 | define symbol __NVIC_end__ = 0x100000C7; |
| emilmont | 77:869cf507173a | 11 | define symbol __region_RAM_start__ = 0x100000C8; |
| Kojto | 90:cb3d968589d8 | 12 | define symbol __region_RAM_end__ = 0x10007FDF; |
| emilmont | 77:869cf507173a | 13 | define symbol _AHB_RAM_start__ = 0x2007C000; |
| emilmont | 77:869cf507173a | 14 | define symbol _AHB_RAM_end__ = 0x20083FFF; |
| emilmont | 77:869cf507173a | 15 | |
| emilmont | 77:869cf507173a | 16 | /* Memory regions */ |
| emilmont | 77:869cf507173a | 17 | define memory mem with size = 4G; |
| emilmont | 77:869cf507173a | 18 | |
| emilmont | 77:869cf507173a | 19 | define region ROM_region = mem:[from __region_ROM_start__ to __region_ROM_end__] - mem:[from __CRP_start__ to __CRP_end__]; |
| emilmont | 77:869cf507173a | 20 | define region CRP_region = mem:[from __CRP_start__ to __CRP_end__]; |
| emilmont | 77:869cf507173a | 21 | |
| emilmont | 77:869cf507173a | 22 | define region RAM_region = mem:[from __region_RAM_start__ to __region_RAM_end__]; |
| emilmont | 77:869cf507173a | 23 | define region AHB_RAM_region = mem:[from _AHB_RAM_start__ to _AHB_RAM_end__]; |
| emilmont | 77:869cf507173a | 24 | |
| emilmont | 77:869cf507173a | 25 | /* Stack and Heap */ |
| emilmont | 77:869cf507173a | 26 | define symbol __size_cstack__ = 0x800; |
| emilmont | 77:869cf507173a | 27 | define symbol __size_heap__ = 0x800; |
| emilmont | 77:869cf507173a | 28 | define block CSTACK with alignment = 8, size = __size_cstack__ { }; |
| emilmont | 77:869cf507173a | 29 | define block HEAP with alignment = 8, size = __size_heap__ { }; |
| emilmont | 77:869cf507173a | 30 | define block STACKHEAP with fixed order { block HEAP, block CSTACK }; |
| emilmont | 77:869cf507173a | 31 | |
| emilmont | 77:869cf507173a | 32 | initialize by copy with packing = zeros { readwrite }; |
| emilmont | 77:869cf507173a | 33 | do not initialize { section .noinit }; |
| emilmont | 77:869cf507173a | 34 | |
| emilmont | 77:869cf507173a | 35 | place at address mem:__intvec_start__ { section .intvec }; |
| emilmont | 77:869cf507173a | 36 | place at address mem:0x2FC { section CRPKEY }; |
| emilmont | 77:869cf507173a | 37 | place in ROM_region { readonly }; |
| emilmont | 77:869cf507173a | 38 | place in RAM_region { readwrite, block STACKHEAP }; |
| emilmont | 77:869cf507173a | 39 | place in AHB_RAM_region { section USB_RAM }; |
| emilmont | 77:869cf507173a | 40 | place in CRP_region { section .crp }; |
