hi,
I want ot launch a CCS windows from my javascript test function.
I follow steps from the web page
// Create base scripting environment.
dssScriptEnv = Packages.com.ti.ccstudio.scripting.environment.ScriptingEnvironment.instance();
// DEBUG: Open a CCS Session to bring up the CCSv4 GUI which will share the same debug context
try
{
dssScriptEnv.getServer("CCSServer.1").openSession(".*");
dssScriptEnv.traceWrite("CCS succesfully opened");
}
catch (ex)
{
errCode = getErrorCode(ex);
dssScriptEnv.traceWrite("Error code #" + errCode + ", failed to open CCS GUI ");
}
But I have the following error message:
WARNING: CCSServer.openSession() failed. DSS was unable to launch Code Composer Studio, however script execution will continue. java.lang.ClassNotFoundException: org.eclipse.equinox.launcher.Main
I used ccsv4.2 R1 / windows XP.
Any any of the rott cause of issue?
regards