/** * \file * * * \author Andrea Scalise * \Signed-off-by Matteo Silvestri * * \brief Script for STM32VLDiscovery Cortex-M3 board. * */ /* * Define stack size here * Variable used in the cortex-m3_rom.ld file */ STACK_SIZE = 0x400; /* * Define memory configuration for STM32F100RB */ MEMORY { rom(rx) : org = 0x00000000, len = 128k ram(rwx) : org = 0x20000000, len = 8k } INCLUDE "bertos/cpu/cortex-m3/scripts/cortex-m3_rom.ld"