ni.com is currently undergoing scheduled maintenance.

Some services may be unavailable at this time. Please contact us for help or try again later.

LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

Creating run fpga button

hi,
     what is the link between fpga and host programs under one project? If i click run button of the host, should the fpga program run automatically at the same time ? Or should i click the run button of the fpga as well? If i need to click myself, i would like to put the shortcut run button for fpga on the front panel of the host. How can i create that button?
Thank you so much for your time.
 
With Regards,
                           Roxy
0 Kudos
Message 1 of 4
(2,823 Views)
The FPGA code will run when you start the host VI, if you program the host
to do so. Create a FPGA reference, and use an FPGA a property node "run" to
start the FPGA code.

Regards,

Wiebe.


0 Kudos
Message 2 of 4
(2,809 Views)
hi
 thanks a lot ,
 i know this function but when i use the run fpga i/o node function, there is "wait until done". what is that for? and what i need to connect to "wait until done"?
Thanks a lot.
                   
Best Regards,
                        Roxy
0 Kudos
Message 3 of 4
(2,807 Views)
>  i know this function but when i use the run fpga i/o node function,
there is "wait until done". what is that for? and what i need to connect to
"wait until done"?

If "wait until done" is true, the property node won't finish until the FPGA
VI/bitfile is idle. So, if you have an infinit loop on your FPGA, you
probably don't want to set this option. But if you do a short measurement,
you can set it to true, and afterwards read the results.

Regards,

Wiebe.


0 Kudos
Message 4 of 4
(2,801 Views)