Tool/software:
The following GEL file correctly allows me to launch the script 'Connect Target' through CCS menu 'Script'. It works.
menuitem "My Functions";
hotmenu Connect_Target()
{
GEL_Connect(); // Connects to the target
GEL_Load("C://M-series-ccs//M_60A//Debug//M_60A.out");
GEL_TextOut("Connected to Target\n");
}
How can I execute this script automaticly after launching debug session?
How to change this script?
Thank you!