I am using Eclipse plugin T32 to interface my Lauterbach, in this way I would like to add as input parameter the binary to be loaded by Lauterbach in my target; however I am not able to achieve this and I am wondering why.
I am using this snippet in the load.cmm script to process the input, I have tried with PARAMTERS
and with ENTRY
commands but it seems not to work
// Using PARAMETERS in Eclipse plugin the call to the script should be xxx.cmm "C:\LocalData\Projects\build\a.elf"
PARAMETERS &elfLocation
// Using ENTRY in Eclipse plugin the call to the script should be xxx.cmm C:\LocalData\Projects\build\a.elf
//ENTRY &elfLocation
Data.load.Elf &elfLocation
My Eclipse plugin is configured like below
What I am doing wrong? Any hints would be appreciated!