Hello,
There is a .tlc file is passed from system promt by batch file like below,
# tcl script to download and execute
# start debug session using current active debug configuration
debug;
# wait for one second
wait 1000;
# remove all breakpoints
bp all off;
# set breakpoint at the end of execution
bp exit;
# start execution
go;
# remove all breakpoints
bp all off;
# terminate the debug session
kill;
# finally exit the IDE
quitIDE;
Code Waririor IDE closes itself when debug command is seen on debugger shell.
Could you please help me about the problem.