/** * \file * * * \author Luca Ottaviano * * \brief Script for STM32P103RE Cortex-M3 MCU. * */ /* * Define stack size here * Variable used in the cortex-m3_rom.ld file */ STACK_SIZE = 0x1000; /* * Define memory configuration for STM32F103RE */ MEMORY { rom(rx) : org = 0x00000000, len = 512k ram(rwx) : org = 0x20000000, len = 64k } INCLUDE "bertos/cpu/cortex-m3/scripts/cortex-m3_rom.ld"