I'm using DSP/BIOS 6.20, CCSv4.1, and XDC 3.16 with an ezdsp28335. I'm trying to map the .transferBufferSection to my SRAM by putting an override in my .cfg file. However, it does not matter what I do, it keeps assigning the transfer buffer to FLASH, which is obviously not a good idea. Here's the line I'm putting in my .cfg file:
Program.sectMap[".transferBufferSection"] = "SRAM"; I've even tried a loadSegment and runSegment setting such as:
var TxBufSect = new Program.SectionSpec; TxBufSect.runSegment = "SRAM"; TxBufSect.loadSegment = "FLASHA"; Program.sectMap[".transferBufferSection"] = TxBufSect; to no avail. Is there a particular reason the process that generates the linker command file won't pick this up? It picks up every other re-mapping I apply. Thanks, Mark Takatz