02-12-2014 06:30 PM
I have an FPGA vi that I want to test on my development computer with the method shown here:
http://zone.ni.com/reference/en-XX/help/371599G-01/lvfpgaconcepts/test_bench_tutorial/
All well and good so far, but one problem- the 'custom FPGA for I/O' is effectively replacing my host VI as I understand it, but as well as simply writing data to FPGA nodes, the host VI also contains a few functions (not written by me but by NI) that are called to interact with the FPGA vi and set it up. Is there any way I can just call these VIs as I would on the host and have them setup the FPGA code when it is executing in simulated mode on the PC, or do I have to do something more clever?
Solved! Go to Solution.
02-17-2014 08:07 AM
Hi ToeCutter,
What kind of format do the functions in your Host vi take?
The easiest way to call these vi's while still using the test bench would probably be to add them to the automated execution Host vi (described at the end of the document), either before, during, or after the while loop, depending on their functionality.
02-17-2014 08:36 AM - edited 02-17-2014 08:36 AM
Al,
Your solution is obvious to me now you mention it, but would never have occurred to me! Like your Avatar, BTW! 🙂
Thanks for the help.