We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
Hi All,
I have DS-5 professional edition license and Fast Models License for Cortex R7.
I have generated AXF file using DS-5 compiler 5.
Using model_shell.exe, I have started the fast model debugger using the following command:
model_shell.exe -m C:\Win64-Release-VC2008\cadi_system_Win64-Release-VC2008.dll --cadi-server --quiet --no-ctrl-c --no-ctrl-c
After that I have used debugger for connecting to the above model and was trying to run/execute the Cortex R7 AXF using command script:
debugger --cdb-entry "ARM FVP::VE_Cortex_R7x1::Bare Metal Debug::Bare Metal Debug::Debug Cortex-R7" --script='LVVE_Fs16000_MIPS_MAX_NVON_Handset.ds'
Details of LVVE_Fs16000_MIPS_MAX_NVON_Handset.ds is:
loadfile TEST_LVVE_THUMBR7NOVFP_ACT_T5D0.axf
start
continue
wait
quit
With the above, I was able to run/execute some times and some times it gives the following error:
WARNING(CMD579): Target is already running
How to resolve the above issue?
Hi sridharartham
The "start" command, when not accompanied by the "set debug-from" command, runs the target to main, so you will need a wait command after the start as well as the continue to prevent trying to continue while the target is running.
Hope this helps,
Jon