mbed library sources. Supersedes mbed-src.

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

Committer:
AnnaBridge
Date:
Fri May 26 12:39:01 2017 +0100
Revision:
165:e614a9f1c9e2
Parent:
149:156823d33999
Child:
188:bcfe06ba3d64
This updates the lib to the mbed lib v 143

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__ = 0x00000000;
<> 144:ef7eb2e8f9f7 6 /*-Memory Regions-*/
<> 144:ef7eb2e8f9f7 7 define symbol __ICFEDIT_region_ROM_start__ = 0x00000000;
<> 144:ef7eb2e8f9f7 8 define symbol __ICFEDIT_region_ROM_end__ = 0x0001ffff;
<> 144:ef7eb2e8f9f7 9 define symbol __ICFEDIT_region_NVIC_start__ = 0x1ffff000;
<> 144:ef7eb2e8f9f7 10 define symbol __ICFEDIT_region_NVIC_end__ = 0x1ffff0bf;
<> 144:ef7eb2e8f9f7 11 define symbol __ICFEDIT_region_RAM_start__ = 0x1ffff0c0;
<> 144:ef7eb2e8f9f7 12 define symbol __ICFEDIT_region_RAM_end__ = 0x1fffffff;
<> 144:ef7eb2e8f9f7 13 /*-Sizes-*/
<> 144:ef7eb2e8f9f7 14 /*Heap 1/4 of ram and stack 1/8*/
<> 144:ef7eb2e8f9f7 15 define symbol __ICFEDIT_size_cstack__ = 0x800;
<> 144:ef7eb2e8f9f7 16 define symbol __ICFEDIT_size_heap__ = 0x1000;
<> 144:ef7eb2e8f9f7 17 /**** End of ICF editor section. ###ICF###*/
<> 144:ef7eb2e8f9f7 18
<> 144:ef7eb2e8f9f7 19 define symbol __region_RAM2_start__ = 0x20000000;
<> 144:ef7eb2e8f9f7 20 define symbol __region_RAM2_end__ = 0x20002fff;
<> 144:ef7eb2e8f9f7 21
<> 144:ef7eb2e8f9f7 22 define symbol __FlashConfig_start__ = 0x00000400;
<> 144:ef7eb2e8f9f7 23 define symbol __FlashConfig_end__ = 0x0000040f;
<> 144:ef7eb2e8f9f7 24
<> 144:ef7eb2e8f9f7 25 define memory mem with size = 4G;
<> 144:ef7eb2e8f9f7 26 define region ROM_region = mem:[from __ICFEDIT_region_ROM_start__ to (__FlashConfig_start__ - 1)] | mem:[from (__FlashConfig_end__+1) to __ICFEDIT_region_ROM_end__];
<> 144:ef7eb2e8f9f7 27 define region RAM_region = mem:[from __ICFEDIT_region_RAM_start__ to __ICFEDIT_region_RAM_end__] | mem:[from __region_RAM2_start__ to __region_RAM2_end__];
<> 144:ef7eb2e8f9f7 28
<> 144:ef7eb2e8f9f7 29 define block CSTACK with alignment = 8, size = __ICFEDIT_size_cstack__ { };
<> 144:ef7eb2e8f9f7 30 define block HEAP with alignment = 8, size = __ICFEDIT_size_heap__ { };
<> 144:ef7eb2e8f9f7 31
<> 144:ef7eb2e8f9f7 32 define region FlashConfig_region = mem:[from __FlashConfig_start__ to __FlashConfig_end__];
<> 144:ef7eb2e8f9f7 33
<> 144:ef7eb2e8f9f7 34 initialize by copy { readwrite };
<> 144:ef7eb2e8f9f7 35 do not initialize { section .noinit };
<> 144:ef7eb2e8f9f7 36
<> 144:ef7eb2e8f9f7 37 place at address mem:__ICFEDIT_intvec_start__ { readonly section .intvec };
<> 144:ef7eb2e8f9f7 38
<> 144:ef7eb2e8f9f7 39 place in FlashConfig_region {section FlashConfig};
<> 144:ef7eb2e8f9f7 40
<> 144:ef7eb2e8f9f7 41 place in ROM_region { readonly };
<> 144:ef7eb2e8f9f7 42
<> 144:ef7eb2e8f9f7 43 place in RAM_region { readwrite, block HEAP, block CSTACK };