Tool/software: Code Composer Studio
CCSv7
I've got two projects, one with ARM side code, and one with DSP side code. I'm trying to write a DSS script to load them both into memory and start debugging on the ARM.
debugSession = debugServer.openSession(".*/ARM9_0");
debugSession.target.connect();
debugSession.memory.loadProgram("dspside.out");
debugSession.memory.loadProgram("armside.out");
debugSession.target.run();
and I get the error
ARM9_0: GEL: File: dspside.out Does not match the target type, not loaded.
If I reverse the order of the two, the armside gets loaded, I immediately break in the debugger at main, and the DSP code never gets loaded.
How do I get around this? How do I get both programs into memory so I can start my debugging?