03-02-2009 04:28 PM
I tried to send different values for the each iteration of the for loop, but I couldn’t do it. Can anyone help me with this please? I have attached the full VI and the part VI to have a look.
Thanks
Regards
Mayuren
03-02-2009 05:01 PM
03-02-2009 07:16 PM
03-12-2009 07:58 AM
Hi Mayuren,
What is it you are trying to do? I have opened the VI's and am unable to picture the application.
Regards
03-12-2009 10:26 AM
Talk about race conditions! You code is highly flawed, because (among many other things), there is no data dependency between "GPIB write" and "GPIB read".
This means they can execute in any order and chances are that read occurs at the same time, or before, the write operation, messing up everything. You need to enforce execution order, e.g. by using the error cluster. LabVIEW does not execute left-to-right!