Tool/software: Code Composer Studio
Hello,
I would like to allocate output sections together in a certain order. I know I can use the GROUP statement. My problem is that sections in the GROUP statement must have same allocation memory and what I would like is to allocate contiguously in FLASH and some sections should RUN from different RAM locations. How can I do it? Example
SECTIONS
{
GROUP : {
.FirstOutput:
{
*(.First_a)
*(.First_b)
}
.SecondOutput:
{
*(.Second_a)
*(.Second_b)
} RUN = RAM_A
.SecondOutput:
{
*(.Second_a)
*(.Second_b)
} RUN = RAM_B
} > FLASH