/** * \file * * * \author Manuele Fanelli * * \brief Script for Luminary Micro LM3S1968 Cortex M3 family processors. * */ /* * Define stack size here * Variable used in the cortex-m3_ram.ld file */ STACK_SIZE = 0x1000; /* * Define memory configuration for LM3S1968 board */ MEMORY { rom(rx) : org = 0x00000000, len = 256k ram(rwx) : org = 0x20000000, len = 64k } INCLUDE "bertos/cpu/cortex-m3/scripts/cortex-m3_ram.ld"