02-20-2006 03:40 PM
02-21-2006 01:51 PM
Hey Brian,
TestStand 3.1 does not support LabVIEW 8.0. If you want to create a code module in LabVIEW you need to use 7.1.1 or earlier with TS 3.1. This is not to say that it may or may not work with 8.0. It is just not supported.
So there is a step type called: Run VI Asynchronously. This will spawn a new thread that will call the LabVIEW module. Then your sequences will continue running. The thread gets closed when the VI is done running or unless you kill the thread. You obviously can't call that VI again until the first one is done executing. That's why you would put a Wait before the step that calls the VI again. You can configure the wait like this: in the Wait For drop down put Thread and then select the Run VI Asynchronously step as the thread to wait for. That way the Wait waits until that thread is done before moving on and calling the VI again. I hope that helps.
02-21-2006 02:34 PM