FreeRTOS-Kernel/Demo/CORTEX_M4F_Infineon_XMC4500_Tasking/RTOSDemo.lsl
Richard Barry 248abca109 Update include paths to be workspace relative.
Minimise the amount of heap space allocated.
Reduce the main() stack from 4K to 2K.
2012-04-06 20:02:44 +00:00

17 lines
306 B
Plaintext

// TASKING VX-toolset for ARM
// Project linker script file
//
#if defined(__PROC_XMC4500X1024__)
#include "xmc45xx.lsl"
#else
#include <device.lsl>
#endif
section_layout ::linear
{
group heap "heap" ( size = 100 );
}
section_layout ::linear
{
group stack "stack" ( size = 2k );
}