I'm in the process of porting a TI-RTOS project from a 28069m device to a 28075.
On the 28069m, I managed my linker file manually. After converting over to the 28075 though, I'm finding a linker file is getting generated at PROJECT_LOC/Debug/configPkg/linker.cmd. The autogenerated file conflicts with the memory sections defined in my custom linker file, and breaks the build.
I'm working around this for now by defining the following in my CFG file:
Program.linkTemplate = "../TMS320F28075.cmd";
Is there a better way of doing this? Auto-generating the linker file would be pretty nice if it could split my code across memory sections and automatically handle the peripheral addresses. Is that possible for this platform?
If not, is there a more convenient way to disable autogeneration so I don't have to disable my linker file from the build? It will make build configurations difficult.
Thanks,
Grant