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:
Mon Sep 28 10:45:10 2015 +0100
Revision:
630:825f75ca301e
Parent:
483:37da4976ca27
Synchronized with git revision 54fbe4144faf309c37205a5d39fa665daa919f10

Full URL: https://github.com/mbedmicro/mbed/commit/54fbe4144faf309c37205a5d39fa665daa919f10/

NUCLEO_F031K6 : Add new target

Who changed what in which revision?

UserRevisionLine numberNew contents of line
mbed_official 630:825f75ca301e 1 /*###ICF### Section handled by ICF editor, don't touch! ****/
mbed_official 630:825f75ca301e 2 /*-Editor annotation file-*/
mbed_official 630:825f75ca301e 3 /* IcfEditorFile="$TOOLKIT_DIR$\config\ide\IcfEditor\cortex_v1_0.xml" */
mbed_official 630:825f75ca301e 4 /*-Specials-*/
mbed_official 630:825f75ca301e 5 define symbol __ICFEDIT_intvec_start__ = 0x08000000;
mbed_official 630:825f75ca301e 6 /*-Memory Regions-*/
mbed_official 630:825f75ca301e 7 define symbol __ICFEDIT_region_ROM_start__ = 0x08000000;
mbed_official 630:825f75ca301e 8 define symbol __ICFEDIT_region_ROM_end__ = 0x0800FFFF;
mbed_official 393:17d2d502961d 9 /* [RAM = 8kb = 0x2000] Vector table dynamic copy: 45 vectors = 180 bytes (0xB4) to be reserved in RAM */
mbed_official 630:825f75ca301e 10 define symbol __ICFEDIT_region_RAM_start__ = 0x200000B8; /* Add 4 more bytes after NVIC section to be aligned on 8 bytes */
mbed_official 630:825f75ca301e 11 define symbol __ICFEDIT_region_RAM_end__ = 0x20001FFF;
mbed_official 630:825f75ca301e 12 /*-Sizes-*/
mbed_official 630:825f75ca301e 13 define symbol __ICFEDIT_size_cstack__ = 0x400;
mbed_official 630:825f75ca301e 14 define symbol __ICFEDIT_size_heap__ = 0x800;
mbed_official 630:825f75ca301e 15 /**** End of ICF editor section. ###ICF###*/
mbed_official 393:17d2d502961d 16
mbed_official 393:17d2d502961d 17 define memory mem with size = 4G;
mbed_official 630:825f75ca301e 18 define region ROM_region = mem:[from __ICFEDIT_region_ROM_start__ to __ICFEDIT_region_ROM_end__];
mbed_official 630:825f75ca301e 19 define region RAM_region = mem:[from __ICFEDIT_region_RAM_start__ to __ICFEDIT_region_RAM_end__];
mbed_official 393:17d2d502961d 20
mbed_official 630:825f75ca301e 21 define block CSTACK with alignment = 8, size = __ICFEDIT_size_cstack__ { };
mbed_official 630:825f75ca301e 22 define block HEAP with alignment = 8, size = __ICFEDIT_size_heap__ { };
mbed_official 393:17d2d502961d 23
mbed_official 630:825f75ca301e 24 initialize by copy { readwrite };
mbed_official 393:17d2d502961d 25 do not initialize { section .noinit };
mbed_official 393:17d2d502961d 26
mbed_official 630:825f75ca301e 27 place at address mem:__ICFEDIT_intvec_start__ { readonly section .intvec };
mbed_official 393:17d2d502961d 28
mbed_official 393:17d2d502961d 29 place in ROM_region { readonly };
mbed_official 630:825f75ca301e 30 place in RAM_region { readwrite,
mbed_official 630:825f75ca301e 31 block CSTACK, block HEAP };
mbed_official 630:825f75ca301e 32
mbed_official 630:825f75ca301e 33 export symbol __ICFEDIT_region_RAM_start__;
mbed_official 630:825f75ca301e 34 export symbol __ICFEDIT_region_RAM_end__;