You are on page 1of 1

application example

------------------------This project supports the STM32F10X-128K-Eval board from ST Microelectronics.


It is equipped with an STM32F103VB Microcontroller.
This MCU provides an Onchip Flash and RAM.
FlashBase:
0x0800.0000
FlashSize:
128 Kbytes
RAMBase:
0x2000.0000
RAMSize:
20 Kbytes
Core:
Compiler/Linker:
Debugmode:

ARM Cortex-M3 (36/72MHz)


GNU toolchain
JTAG selected

memory model of the application


+---------------------------+0xffffffff
|
|
|
|
|
|
+---------------------------+<-- _stacktop (0x20004FFC)
|
|
|
STACK
|<-- currrent stack-pointer (dec
reasing)
|
|
|
|
| . . . . . . . . . . . . .
|
|
|
|
HEAP (0x2000)
|<-- current heap-pointer (increasing)
| . . . . . . . . . . . . .
|
|
|
| initialized data (consts) |
| . . . . . . . . . . . . .
|<-- (0x20001000)
|
|
| uninitialized data
|
+---------------------------+<-- _edata (0x20000000)
|
|
|
|
|
|
|
CODE
|
|
|
|
|
+---------------------------+ 0x000000000

You might also like