mbed library sources. Supersedes mbed-src.

Dependents:   Nucleo_Hello_Encoder BLE_iBeaconScan AM1805_DEMO DISCO-F429ZI_ExportTemplate1 ... more

Committer:
AnnaBridge
Date:
Mon Oct 02 15:33:19 2017 +0100
Revision:
174:b96e65c34a4d
Parent:
149:156823d33999
Child:
188:bcfe06ba3d64
This updates the lib to the mbed lib v 152

Who changed what in which revision?

UserRevisionLine numberNew contents of line
<> 144:ef7eb2e8f9f7 1 /*###ICF### Section handled by ICF editor, don't touch! ****/
<> 144:ef7eb2e8f9f7 2 /*-Editor annotation file-*/
<> 144:ef7eb2e8f9f7 3 /* IcfEditorFile="$TOOLKIT_DIR$\config\ide\IcfEditor\cortex_v1_0.xml" */
<> 144:ef7eb2e8f9f7 4 /*-Specials-*/
<> 144:ef7eb2e8f9f7 5 define symbol __ICFEDIT_intvec_start__ = 0x08000000;
<> 144:ef7eb2e8f9f7 6 /*-Memory Regions-*/
<> 144:ef7eb2e8f9f7 7 define symbol __ICFEDIT_region_ROM_start__ = 0x08000000;
<> 144:ef7eb2e8f9f7 8 define symbol __ICFEDIT_region_ROM_end__ = 0x0801FFFF;
<> 144:ef7eb2e8f9f7 9 define symbol __ICFEDIT_region_RAM_start__ = 0x200000C0;
<> 144:ef7eb2e8f9f7 10 define symbol __ICFEDIT_region_RAM_end__ = 0x20003FFF;
<> 144:ef7eb2e8f9f7 11 /*-Sizes-*/
AnnaBridge 174:b96e65c34a4d 12 define symbol __ICFEDIT_size_cstack__ = 0x400;
<> 144:ef7eb2e8f9f7 13 define symbol __ICFEDIT_size_heap__ = 0x1000;
<> 144:ef7eb2e8f9f7 14 /**** End of ICF editor section. ###ICF###*/
<> 144:ef7eb2e8f9f7 15
<> 144:ef7eb2e8f9f7 16 define memory mem with size = 4G;
<> 144:ef7eb2e8f9f7 17 define region ROM_region = mem:[from __ICFEDIT_region_ROM_start__ to __ICFEDIT_region_ROM_end__];
<> 144:ef7eb2e8f9f7 18 define region RAM_region = mem:[from __ICFEDIT_region_RAM_start__ to __ICFEDIT_region_RAM_end__];
<> 144:ef7eb2e8f9f7 19
<> 144:ef7eb2e8f9f7 20 define block CSTACK with alignment = 8, size = __ICFEDIT_size_cstack__ { };
<> 144:ef7eb2e8f9f7 21 define block HEAP with alignment = 8, size = __ICFEDIT_size_heap__ { };
<> 144:ef7eb2e8f9f7 22
<> 144:ef7eb2e8f9f7 23 initialize by copy { readwrite };
<> 144:ef7eb2e8f9f7 24 do not initialize { section .noinit };
<> 144:ef7eb2e8f9f7 25
<> 144:ef7eb2e8f9f7 26 place at address mem:__ICFEDIT_intvec_start__ { readonly section .intvec };
<> 144:ef7eb2e8f9f7 27
<> 144:ef7eb2e8f9f7 28 place in ROM_region { readonly };
<> 144:ef7eb2e8f9f7 29 place in RAM_region { readwrite,
<> 144:ef7eb2e8f9f7 30 block CSTACK, block HEAP };
<> 144:ef7eb2e8f9f7 31
<> 144:ef7eb2e8f9f7 32 export symbol __ICFEDIT_region_RAM_start__;
<> 144:ef7eb2e8f9f7 33 export symbol __ICFEDIT_region_RAM_end__;
<> 144:ef7eb2e8f9f7 34