This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

CCS/PROCESSOR-SDK-OMAPL138: DSS multicore

Part Number: PROCESSOR-SDK-OMAPL138


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?