The official Mbed 2 C/C++ SDK provides the software platform and libraries to build your applications.

Dependents:   hello SerialTestv11 SerialTestv12 Sierpinski ... more

mbed 2

This is the mbed 2 library. If you'd like to learn about Mbed OS please see the mbed-os docs.

Committer:
Kojto
Date:
Wed Jul 19 16:46:19 2017 +0100
Revision:
147:a97add6d7e64
Parent:
140:97feb9bacc10
Release 147 of the mbed library.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Kojto 119:aae6fcc7d9bb 1 /* [ROM = 32kb = 0x8000] */
Kojto 119:aae6fcc7d9bb 2 define symbol __intvec_start__ = 0x08000000;
Kojto 119:aae6fcc7d9bb 3 define symbol __region_ROM_start__ = 0x08000000;
Kojto 119:aae6fcc7d9bb 4 define symbol __region_ROM_end__ = 0x08007FFF;
Kojto 119:aae6fcc7d9bb 5
Kojto 119:aae6fcc7d9bb 6 /* [RAM = 8kb = 0x2000] Vector table dynamic copy: 48 vectors = 192 bytes (0xC0) to be reserved in RAM */
Kojto 119:aae6fcc7d9bb 7 define symbol __NVIC_start__ = 0x20000000;
Kojto 119:aae6fcc7d9bb 8 define symbol __NVIC_end__ = 0x200000BF; /* Aligned on 8 bytes */
Kojto 119:aae6fcc7d9bb 9 define symbol __region_RAM_start__ = 0x200000C0;
Kojto 119:aae6fcc7d9bb 10 define symbol __region_RAM_end__ = 0x20001FFF;
Kojto 119:aae6fcc7d9bb 11
Kojto 119:aae6fcc7d9bb 12 /* Memory regions */
Kojto 119:aae6fcc7d9bb 13 define memory mem with size = 4G;
Kojto 119:aae6fcc7d9bb 14 define region ROM_region = mem:[from __region_ROM_start__ to __region_ROM_end__];
Kojto 119:aae6fcc7d9bb 15 define region RAM_region = mem:[from __region_RAM_start__ to __region_RAM_end__];
Kojto 119:aae6fcc7d9bb 16
Kojto 119:aae6fcc7d9bb 17 /* Stack and Heap */
<> 140:97feb9bacc10 18 define symbol __size_cstack__ = 0x400;
<> 140:97feb9bacc10 19 define symbol __size_heap__ = 0x800;
Kojto 119:aae6fcc7d9bb 20 define block CSTACK with alignment = 8, size = __size_cstack__ { };
Kojto 119:aae6fcc7d9bb 21 define block HEAP with alignment = 8, size = __size_heap__ { };
Kojto 119:aae6fcc7d9bb 22 define block STACKHEAP with fixed order { block HEAP, block CSTACK };
Kojto 119:aae6fcc7d9bb 23
Kojto 119:aae6fcc7d9bb 24 initialize by copy with packing = zeros { readwrite };
Kojto 119:aae6fcc7d9bb 25 do not initialize { section .noinit };
Kojto 119:aae6fcc7d9bb 26
Kojto 119:aae6fcc7d9bb 27 place at address mem:__intvec_start__ { readonly section .intvec };
Kojto 119:aae6fcc7d9bb 28
Kojto 119:aae6fcc7d9bb 29 place in ROM_region { readonly };
Kojto 119:aae6fcc7d9bb 30 place in RAM_region { readwrite, block STACKHEAP };