07-11-2016 05:02 AM
Hi to all.
First of all thanks a lot for reading this post and being able to help.
I would like to know how many 'whiles' can i have in a VI.
Because I am thinking in an application will have 9 whiles.
Is there any reestriccion in this?
Thanks a lot
07-11-2016 05:12 AM
Can Have more than that also but make sure about the execution time and synchronozation between loops.
But Logic can be made to handle in lesser Loops itself
07-11-2016 05:32 AM
07-11-2016 05:36 AM
hello.
First of all thanks a lot for replying me!
I am going to do that, I thikn it will work.
See this post please to help me in synchronization between whiles.
http://forums.ni.com/t5/LabVIEW/Syncronitation-between-whiles/td-p/3320211
thanks a lot again.
07-11-2016 07:09 AM
I've written routines that had at least 100 While loops running in parallel (many were started Asynchronously, so they weren't explicitly on a Block Diagram).
Bob Schor
07-11-2016 12:30 PM - edited 07-11-2016 12:32 PM
Here's an article that talks about how many simultaneous threads are possible.
You can have more while loops than this but they might take turns being active rather than executing in parallel
07-12-2016 02:20 AM
Thanks a lot for replying me!