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.
TARGET_LPC1768/TOOLCHAIN_IAR/LPC17xx.icf@154:fb8e0ae1cceb, 2017-10-25 (annotated)
- Committer:
- AnnaBridge
- Date:
- Wed Oct 25 14:40:21 2017 +0100
- Revision:
- 154:fb8e0ae1cceb
- Parent:
- 152:235179ab3f27
Release 154 of the mbed library.
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
AnnaBridge | 154:fb8e0ae1cceb | 1 | if (!isdefinedsymbol(MBED_APP_START)) { define symbol MBED_APP_START = 0x00000000; } |
AnnaBridge | 154:fb8e0ae1cceb | 2 | if (!isdefinedsymbol(MBED_APP_SIZE)) { define symbol MBED_APP_SIZE = 0x80000; } |
Kojto | 93:e188a91d3eaa | 3 | /*###ICF### Section handled by ICF editor, don't touch! ****/ |
Kojto | 93:e188a91d3eaa | 4 | /*-Editor annotation file-*/ |
Kojto | 93:e188a91d3eaa | 5 | /* IcfEditorFile="$TOOLKIT_DIR$\config\ide\IcfEditor\cortex_v1_0.xml" */ |
Kojto | 93:e188a91d3eaa | 6 | /*-Specials-*/ |
AnnaBridge | 154:fb8e0ae1cceb | 7 | define symbol __ICFEDIT_intvec_start__ = MBED_APP_START; |
Kojto | 93:e188a91d3eaa | 8 | /*-Memory Regions-*/ |
AnnaBridge | 154:fb8e0ae1cceb | 9 | define symbol __ICFEDIT_region_ROM_start__ = MBED_APP_START; |
AnnaBridge | 154:fb8e0ae1cceb | 10 | define symbol __ICFEDIT_region_ROM_end__ = MBED_APP_START + MBED_APP_SIZE - 1; |
Kojto | 93:e188a91d3eaa | 11 | define symbol __ICFEDIT_region_NVIC_start__ = 0x10000000; |
Kojto | 93:e188a91d3eaa | 12 | define symbol __ICFEDIT_region_NVIC_end__ = 0x100000C7; |
Kojto | 93:e188a91d3eaa | 13 | define symbol __ICFEDIT_region_RAM_start__ = 0x100000C8; |
AnnaBridge | 152:235179ab3f27 | 14 | define symbol __ICFEDIT_region_RAM_end__ = 0x10007FE0; |
bogdanm | 66:9c8f0e3462fb | 15 | |
Kojto | 93:e188a91d3eaa | 16 | /*-Sizes-*/ |
AnnaBridge | 152:235179ab3f27 | 17 | /*Heap 1/4 of ram and stack 1/8*/ |
Kojto | 95:7e07b6fb45cf | 18 | define symbol __ICFEDIT_size_cstack__ = 0x1000; |
AnnaBridge | 152:235179ab3f27 | 19 | define symbol __ICFEDIT_size_heap__ = 0x2000; |
Kojto | 93:e188a91d3eaa | 20 | /**** End of ICF editor section. ###ICF###*/ |
bogdanm | 66:9c8f0e3462fb | 21 | |
AnnaBridge | 154:fb8e0ae1cceb | 22 | define symbol __CRP_start__ = MBED_APP_START + 0x000002FC; |
AnnaBridge | 154:fb8e0ae1cceb | 23 | define symbol __CRP_end__ = MBED_APP_START + 0x000002FF; |
bogdanm | 66:9c8f0e3462fb | 24 | |
Kojto | 93:e188a91d3eaa | 25 | define symbol __RAM1_start__ = 0x2007C000; |
Kojto | 93:e188a91d3eaa | 26 | define symbol __RAM1_end__ = 0x20083FFF; |
bogdanm | 66:9c8f0e3462fb | 27 | |
Kojto | 93:e188a91d3eaa | 28 | define memory mem with size = 4G; |
Kojto | 93:e188a91d3eaa | 29 | define region ROM_region = mem:[from __ICFEDIT_region_ROM_start__ to __ICFEDIT_region_ROM_end__] - mem:[from __CRP_start__ to __CRP_end__]; |
Kojto | 93:e188a91d3eaa | 30 | define region RAM_region = mem:[from __ICFEDIT_region_RAM_start__ to __ICFEDIT_region_RAM_end__]; |
Kojto | 93:e188a91d3eaa | 31 | define region CRP_region = mem:[from __CRP_start__ to __CRP_end__]; |
Kojto | 93:e188a91d3eaa | 32 | define region RAM1_region = mem:[from __RAM1_start__ to __RAM1_end__]; |
bogdanm | 66:9c8f0e3462fb | 33 | |
Kojto | 93:e188a91d3eaa | 34 | define block CSTACK with alignment = 8, size = __ICFEDIT_size_cstack__ { }; |
Kojto | 93:e188a91d3eaa | 35 | define block HEAP with alignment = 8, size = __ICFEDIT_size_heap__ { }; |
Kojto | 93:e188a91d3eaa | 36 | |
Kojto | 93:e188a91d3eaa | 37 | |
Kojto | 93:e188a91d3eaa | 38 | initialize by copy { readwrite }; |
bogdanm | 66:9c8f0e3462fb | 39 | do not initialize { section .noinit }; |
bogdanm | 66:9c8f0e3462fb | 40 | |
Kojto | 93:e188a91d3eaa | 41 | place at address mem:__ICFEDIT_intvec_start__ { readonly section .intvec }; |
Kojto | 93:e188a91d3eaa | 42 | place in ROM_region { readonly }; |
Kojto | 93:e188a91d3eaa | 43 | place in RAM_region { readwrite, |
Kojto | 93:e188a91d3eaa | 44 | block HEAP, block CSTACK }; |
Kojto | 122:f9eeca106725 | 45 | |
AnnaBridge | 154:fb8e0ae1cceb | 46 | place in CRP_region { section .CRPSection }; |
Kojto | 122:f9eeca106725 | 47 | place in RAM1_region { section .ethusbram }; |