To start, I am working with the TMS320C6472 DSP.
I have a single platform definition for my code base. This defines my memory map, but also contains the following:
override config string codeMemory = "SL2RAM";
override config string dataMemory = "LL2RAM";
override config string stackMemory = "L1DSRAM";
Now, for one of my binaries this is fine. I have another binary that runs on another core and I want to use the same platform file but change codeMemory to LL2RAM. I have scoured RTSC-pedia, but have been unable to find a way to do this. I would like to avoid making completely separate platforms just to change these settings so I am trying to use either the .cfg or .bld file for my module.
Thanks