‎02-07-2005 11:16 AM
‎02-07-2005 12:51 PM
Yes, don't worry about that amount of data. Structure it any way you like, but I wouldn't base any decisions on that argument-passing time.
I would have one thread (while loop) reading and displaying the data, while another loop waits for the button press (or a QUIT button press, whatever other UI you need).
Blog for (mostly LabVIEW) programmers: Tips And Tricks
‎02-08-2005 12:42 PM
‎02-08-2005 01:15 PM
Blog for (mostly LabVIEW) programmers: Tips And Tricks
‎02-08-2005 01:25 PM
‎02-08-2005 01:45 PM
From the HELP docs: The operation returns only when the transfer terminates.
Well, "give up" is not the right term, but it will sleep the thread it's in. That means that other WHILE loops in the same VI or other VIs will continue to run.
If you want to use the "consumer" in other programs, then by all means make it a separate loop. Use a queue to pass from one to the other.
Blog for (mostly LabVIEW) programmers: Tips And Tricks
‎02-08-2005 01:59 PM
‎02-09-2005 11:46 AM
‎02-09-2005 01:56 PM
Blog for (mostly LabVIEW) programmers: Tips And Tricks
‎02-09-2005 02:56 PM