Hi,
We have bit complex CI set up and we using DSS utility provided by TI for automation our Module test cases; as a pre-requisite we expect the required *.out file to be loaded to EVM board and run in synchronous mode and below is the piece of code that we use
debugSession.target.connect();
debugSession.memory.loadProgram(this.binaryFile);
debugSession.target.run();
debugSession.terminate();
// Start MT execution
The issue we have here is once we start Target in synchronous mode (debugSession.target.run();) the control is returned to next line the script which is blocking the MT executoin; any idea how do we resolve this? unfortunately we cant run target in asynchronous mode as all our Module tests are failing (not sure why)
Thanks
Raju.