Tool/software:
Hi,
I'm trying to automate the startup process for a multi-debug session. In other words, I would like the .out file to be loaded automatically after connecting to the target.
I figured out that to achieve this, I need to modify the GEL file, so I added the following code:
OnTargetConnect()
{
GEL_Load("c:\\mydir\\myfile.out", "cpu_a", "Emulator");
}
However, the program is not being loaded.
Any suggestions?
Thanks!