Hi,
I am developing JAVA code using CSS to access the TI EVM for C6472. I am using the onboard XDS100 JTAG emulator. It
all works fine if I use the stand-alone CSS server (without CCS GUI).
I now need to use the CCS GUI at the same time as my program to debug the DSP. I am using the instructions provided at http://wiki.davincidsp.com/index.php/Debugging_Your_DSS_Script_Using_CCStudio_v4 to update my JAVA code.
However I don't manage to start the CCS GUI.
Here is the code I am using:
m_dssScriptEnv = com.ti.ccstudio.scripting.environment.ScriptingEnvironment.instance();
try {
m_dssScriptEnv.traceSetConsoleLevel(com.ti.ccstudio.scripting.environment.TraceLevel.ALL);
CCSServer xxx = (CCSServer)m_dssScriptEnv.getServer("CCSServer.1");
xxx.openSession(".*");
} catch (ScriptingException e) {
e.printStackTrace();
}
And here is the output I get:
getServer: RETURN com.ti.ccstudio.scripting.CCSServer@1f8247d
WARNING: CCSServer.openSession() failed. DSS was unable to launch Code
Composer Studio, however script execution will continue.
java.lang.ClassNotFoundException: org.eclipse.core.launcher.Main
I am using Eclipse Java EE IDE build id: 20090920-1017 to run my JAVA program.
Thanks,
JP