mbed library sources

Dependents:   Encrypted my_mbed lklk CyaSSL_DTLS_Cellular ... more

Superseded

This library was superseded by mbed-dev - https://os.mbed.com/users/mbed_official/code/mbed-dev/.

Development branch of the mbed library sources. This library is kept in synch with the latest changes from the mbed SDK and it is not guaranteed to work.

If you are looking for a stable and tested release, please import one of the official mbed library releases:

Import librarymbed

The official Mbed 2 C/C++ SDK provides the software platform and libraries to build your applications.

Committer:
mbed_official
Date:
Fri Jul 31 14:15:09 2015 +0100
Revision:
600:7d17ca308cd1
Parent:
483:37da4976ca27
Synchronized with git revision e4cd8bbd3e05b68e5a7f466c74035a85743d45e0

Full URL: https://github.com/mbedmicro/mbed/commit/e4cd8bbd3e05b68e5a7f466c74035a85743d45e0/

Enable LPC8xx usart when configuring it

Who changed what in which revision?

UserRevisionLine numberNew contents of line
mbed_official 417:39e86d6263aa 1 /*###ICF### Section handled by ICF editor, don't touch! ****/
mbed_official 417:39e86d6263aa 2 /*-Editor annotation file-*/
mbed_official 417:39e86d6263aa 3 /* IcfEditorFile="$TOOLKIT_DIR$\config\ide\IcfEditor\cortex_v1_0.xml" */
mbed_official 417:39e86d6263aa 4 /*-Specials-*/
mbed_official 417:39e86d6263aa 5 define symbol __ICFEDIT_intvec_start__ = 0x00000000;
mbed_official 417:39e86d6263aa 6 /*-Memory Regions-*/
mbed_official 417:39e86d6263aa 7 define symbol __ICFEDIT_region_ROM_start__ = 0x00000000;
mbed_official 417:39e86d6263aa 8 define symbol __ICFEDIT_region_ROM_end__ = 0x0007FFFF;
mbed_official 417:39e86d6263aa 9 define symbol __ICFEDIT_region_NVIC_start__ = 0x10000000;
mbed_official 417:39e86d6263aa 10 define symbol __ICFEDIT_region_NVIC_end__ = 0x100000C7;
mbed_official 417:39e86d6263aa 11 define symbol __ICFEDIT_region_RAM_start__ = 0x100000C8;
mbed_official 417:39e86d6263aa 12 define symbol __ICFEDIT_region_RAM_end__ = 0x10007FDF;
emilmont 10:3bc89ef62ce7 13
mbed_official 417:39e86d6263aa 14 /*-Sizes-*/
mbed_official 483:37da4976ca27 15 /*Heap 1/4 of ram and stack 1/8*/
mbed_official 483:37da4976ca27 16 define symbol __ICFEDIT_size_cstack__ = 0x1000;
mbed_official 483:37da4976ca27 17 define symbol __ICFEDIT_size_heap__ = 0x2000;
mbed_official 417:39e86d6263aa 18 /**** End of ICF editor section. ###ICF###*/
emilmont 10:3bc89ef62ce7 19
mbed_official 417:39e86d6263aa 20 define symbol __CRP_start__ = 0x000002FC;
mbed_official 417:39e86d6263aa 21 define symbol __CRP_end__ = 0x000002FF;
emilmont 10:3bc89ef62ce7 22
mbed_official 417:39e86d6263aa 23 define symbol __RAM1_start__ = 0x2007C000;
mbed_official 417:39e86d6263aa 24 define symbol __RAM1_end__ = 0x20083FFF;
emilmont 10:3bc89ef62ce7 25
mbed_official 417:39e86d6263aa 26 define memory mem with size = 4G;
mbed_official 417:39e86d6263aa 27 define region ROM_region = mem:[from __ICFEDIT_region_ROM_start__ to __ICFEDIT_region_ROM_end__] - mem:[from __CRP_start__ to __CRP_end__];
mbed_official 417:39e86d6263aa 28 define region RAM_region = mem:[from __ICFEDIT_region_RAM_start__ to __ICFEDIT_region_RAM_end__];
mbed_official 417:39e86d6263aa 29 define region CRP_region = mem:[from __CRP_start__ to __CRP_end__];
mbed_official 417:39e86d6263aa 30 define region RAM1_region = mem:[from __RAM1_start__ to __RAM1_end__];
emilmont 10:3bc89ef62ce7 31
mbed_official 417:39e86d6263aa 32 define block CSTACK with alignment = 8, size = __ICFEDIT_size_cstack__ { };
mbed_official 417:39e86d6263aa 33 define block HEAP with alignment = 8, size = __ICFEDIT_size_heap__ { };
mbed_official 417:39e86d6263aa 34
mbed_official 417:39e86d6263aa 35
mbed_official 417:39e86d6263aa 36 initialize by copy { readwrite };
emilmont 10:3bc89ef62ce7 37 do not initialize { section .noinit };
emilmont 10:3bc89ef62ce7 38
mbed_official 417:39e86d6263aa 39 place at address mem:__ICFEDIT_intvec_start__ { readonly section .intvec };
mbed_official 417:39e86d6263aa 40 place in ROM_region { readonly };
mbed_official 417:39e86d6263aa 41 place in RAM_region { readwrite,
mbed_official 417:39e86d6263aa 42 block HEAP, block CSTACK };
mbed_official 417:39e86d6263aa 43
mbed_official 417:39e86d6263aa 44 place in CRP_region { section .crp };
mbed_official 417:39e86d6263aa 45 place in RAM1_region { section USB_RAM };