mbed library sources

Dependents:   Nucleo_blink_led

Fork of mbed-src by mbed official

Committer:
mbed_official
Date:
Wed Feb 04 09:30:08 2015 +0000
Revision:
464:04583941e294
Child:
483:37da4976ca27
Synchronized with git revision c8f933ba07bc7c72c3e5e997a9862ba21d33f89c

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

UBLOX_C029 - new target based on STM32F439

Who changed what in which revision?

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