11-02-2005 10:29 PM
11-02-2005 10:44 PM
Realize that everything in LabVIEW does not have to be connected to something. If you create a While loop off by itself somewhere, you've in essence created a new "thread" and that while loop will run by itself while everything else is running. This is called "Parallel Execution" (or something to that effect), and can be seen easily by turning on the "Highlight Execution" feature.
Remember if your secondary While loop is taking measurements and your main loops are supposed to be processing those measurements (I'm assuming this is the case) you might need some kind of synchronization between the loops. I find using the Queue structures to be the best way to do this.
-Danny