Hello,
I am trying to load a GEL file on to the code composer studio v4.10.37 via command prompt as shown below:
C:\PRJ_FOLDER> C:\tic3x4x\cc\bin\cc_app.exe Load.gel
The contents of Load.gel is as shown below:
StartUp()
{
GEL_Load("file.out");
GEL_Run();
}
As expected, the GEL file loads and executes the COFF file (file.out) also the result files are generated. But the GUI wont exits and needs manual close.
Hence to exit the GUI, gel command GEL_Exit() is used in the startup code as shown below:
StartUp()
{
GEL_Load("file.out");
GEL_Run();
GEL_Exit();
}
But this modification loads the the COFF file and executes also instantly closes the application and results are not generated.
Could you please help me to achieve the following via a gel script,
- Load a COFF file
- Execute to generate the complete result
- Exit the Code composer GUI (So that the whole process can be repeated for the next COFF file)
Thanks in advance,
Harish Rajanna