11-05-2011 10:17 AM
HI all,
I would like to keep reading some values inside a subvi. This subvi is a for loop with 100 iterations.
I mean, I want to read outside of this subvi each iteration but in the same loop.
Any idea?
Regards
Kito
Solved! Go to Solution.
11-05-2011 02:26 PM
Hi,
What exactly you are trying to achieve??
Numeric is an indicator as well as a variable.
Do you want to read numeric "indicator" to be read continously??
If that is the case, Use reference of the indicator.
Regards,
Bijay
11-05-2011 03:16 PM
@Kitofelipe wrote:
I would like to keep reading some values inside a subvi. This subvi is a for loop with 100 iterations.
I mean, I want to read outside of this subvi each iteration but in the same loop.
You cannot do it in the same loop as the subVI, because the loop cannot proceed to the next iteration unless the subVI has completed. You need to use a seperate loop.
What is the purpose of this execise, just complicate things unecessary? 😮
11-06-2011 03:38 AM
Thanks. I can read in a separete loop.
Regards