Hi,
I'll reuse an old thread as the platform and software packets in use are roughly the same (syslink examples)
https://e2e.ti.com/support/embedded/tirtos/f/355/t/266606
I would like to transfer some of the DSP -code to L2 to run faster. I tested region/section things in Win/CCS and code
Program.sectMap["fastL2"] = new Program.SectionSpec();
Program.sectMap["fastL2"].loadSegment = "IRAM";
Program.sectMap["fastL2"].loadAlign = 4;
Program.sectMap["fastL2"].fill = 55;
in *.cfg - worked fine; with #pragma CODE_SECTION(".fastL2") I can place the code to L2.
BUT when I'm trying to do the same with Syslink-example, fastL2 always maps to "IROM". Should I do something for ti.platforms.evmOMAPL138 or how to? And if I manage to map to "IRAM", does syslink/IPC have mechanism to transfer code there?
risto