This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

CCSTUDIO: CCS : hot to automaticly launch processor (GEL file)

Part Number: CCSTUDIO

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!