This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

C6678 .cfg file

Hello all,

I am using CCS 5.5 and C6678 DSP.

All cores 1-7 will run the same code (similar to the image demo project) with the exception that each core will have a different section of the DDR3.

Question: How can we use the same .cfg file and inside the file, based on the core number (DNUM), select a different DDR3 section

Something like this

if (DNUM==1)

{

Program.sectMap[".text"]     = "DDR3CORE1";

else if (DNUM==2)

Program.sectMap[".text"]     = "DDR3CORE2";

...

}

This is needed so we can use the same .out file with the MAD which will reduce the firmware size alot

Regards,

Murad