03-06-2014 12:41 PM
I am using CRIO 9073 for data acquisition from sensors. The Labview program is written in both RT target and FPGA target. Is it posssible to do step wise execution for the Program written in RT target and the FPGA target the way we do for debugging program in general purpose OS.
Solved! Go to Solution.
03-07-2014 08:14 AM
mjm,
The only way to use the debugging tools on a VI written for FPGA is to simulate execution on the host PC. You can then deploy the compiled FPGA code to the target and run your RT VI in debugging mode if you are using front panel communication with the host PC.
03-08-2014 10:38 PM
Hey @mjm,
Here are the steps that you would need to go through in order to debug your Real-Time application running on your target,
http://zone.ni.com/reference/en-XX/help/370622K-01/lvrthowto/rt_debugging_startup_app/
Remember to remove debugging when you release your final build as it will significantly decrease your build size.
03-13-2014 07:55 PM
thank you