03-18-2015 05:48 PM
Hi,
I am pretty new to LabView. I have two while loop in my VI. I would like to start my second while loop only after a boolean indicator goes high in the first loop, and then run both the loops simultaneously until stop condition is reached. I have tried using loop tunneling and included the second while loop in a true/false case structure. But the second loop never started when I ran the program.
Someone please help !!! Thanks.
03-18-2015 06:16 PM
The reason your second loop never started was likely due to data flow. Code won't execute until ALL of your data has arrived.
There are several methods you could use for this. The simplest would likely be Occurrences.
03-18-2015 06:29 PM
Your desciption is not sufficient to troubleshoot the problem. Please show us your code.
What is "loop tunneling"? I am not familiar with that expression.
It might be more useful if you would tell us what you want to achieve instead of how you want to achieve it. What happens in the various loops? What is the purpose of the delay? What are the intended loop rates of the two loops?
03-19-2015 12:17 AM