06-17-2015 05:56 AM
It has been awhile since I made my last application. It has escaped me how to run a VI with a loop in it as a sub VI and still pass the waveform chart up to the calling VI. I am trying to use the Bridge Continuous example as a sub VI and pass that waveform chart up to the calling VI that selects which load cells to monitor. But when i run the calling VI it stops at the sub VI with a green arrow.
06-17-2015 06:00 AM
Your acquisition needs to run in parallel with your main loop. You should also use a queue or notifier to send that parallel process commands (like to stop). I would use a User Event to send the data from your aquisition to your main loop's event structure. You can then update the chart inside of the event structure.
06-17-2015 06:05 AM