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 Aug 14 13:15:17 2015 +0100
Revision:
610:813dcc80987e
Child:
629:1806c2edb763
Synchronized with git revision 6d84db41c6833e0b9b024741eb0616a5f62d5599

Full URL: https://github.com/mbedmicro/mbed/commit/6d84db41c6833e0b9b024741eb0616a5f62d5599/

DISCO_F746NG - Improvements

Who changed what in which revision?

UserRevisionLine numberNew contents of line
mbed_official 610:813dcc80987e 1 /* [ROM = 1024kb = 0x100000] */
mbed_official 610:813dcc80987e 2 define symbol __intvec_start__ = 0x08000000;
mbed_official 610:813dcc80987e 3 define symbol __region_ROM_start__ = 0x08000000;
mbed_official 610:813dcc80987e 4 define symbol __region_ROM_end__ = 0x080FFFFF;
mbed_official 610:813dcc80987e 5
mbed_official 610:813dcc80987e 6 /* [RAM = 128kb = 0x20000] */
mbed_official 610:813dcc80987e 7 /* Vector table dynamic copy: Total: 98 vectors = 392 bytes (0x188) to be reserved in RAM */
mbed_official 610:813dcc80987e 8 define symbol __NVIC_start__ = 0x20000000;
mbed_official 610:813dcc80987e 9 define symbol __NVIC_end__ = 0x20000187; /* Aligned on 8 bytes (392 = 49 x 8) */
mbed_official 610:813dcc80987e 10 define symbol __region_RAM_start__ = 0x20000188;
mbed_official 610:813dcc80987e 11 define symbol __region_RAM_end__ = 0x2001FFFF;
mbed_official 610:813dcc80987e 12 define symbol __region_SRAM2_start__ = 0x10000000;
mbed_official 610:813dcc80987e 13 define symbol __region_SRAM2_end__ = 0x10007FFF;
mbed_official 610:813dcc80987e 14
mbed_official 610:813dcc80987e 15 /* Memory regions */
mbed_official 610:813dcc80987e 16 define memory mem with size = 4G;
mbed_official 610:813dcc80987e 17 define region ROM_region = mem:[from __region_ROM_start__ to __region_ROM_end__];
mbed_official 610:813dcc80987e 18 define region RAM_region = mem:[from __region_RAM_start__ to __region_RAM_end__];
mbed_official 610:813dcc80987e 19 define region SRAM2_region = mem:[from __region_SRAM2_start__ to __region_SRAM2_end__];
mbed_official 610:813dcc80987e 20
mbed_official 610:813dcc80987e 21 /* Stack 1/8 and Heap 1/4 of RAM */
mbed_official 610:813dcc80987e 22 define symbol __size_cstack__ = 0x4000;
mbed_official 610:813dcc80987e 23 define symbol __size_heap__ = 0x8000;
mbed_official 610:813dcc80987e 24 define block CSTACK with alignment = 8, size = __size_cstack__ { };
mbed_official 610:813dcc80987e 25 define block HEAP with alignment = 8, size = __size_heap__ { };
mbed_official 610:813dcc80987e 26 define block STACKHEAP with fixed order { block HEAP, block CSTACK };
mbed_official 610:813dcc80987e 27
mbed_official 610:813dcc80987e 28 initialize by copy with packing = zeros { readwrite };
mbed_official 610:813dcc80987e 29 do not initialize { section .noinit };
mbed_official 610:813dcc80987e 30
mbed_official 610:813dcc80987e 31 place at address mem:__intvec_start__ { readonly section .intvec };
mbed_official 610:813dcc80987e 32
mbed_official 610:813dcc80987e 33 place in ROM_region { readonly };
mbed_official 610:813dcc80987e 34 place in RAM_region { readwrite, block STACKHEAP };
mbed_official 610:813dcc80987e 35 place in SRAM2_region { };