Hi,
I am looking to stagger the start of certain DAQ processes along my given experiment timeline. For example, In my PXI Chassis, I have 3 DAQ devices. I want to start two at time t = 0, and the third at time t = 5 s. I want them all to stop at time t = 10 s. I am programming this in LabWindows CVI, and I cannot figure out how to begin acquisition for two modules at the same time.
I am using, as an example;
DAQmxStartTask(TaskOne);
DAQmxStartTask(TaskTwo);
DAQmxReadAnalog(TaskOne);
DAQmcReadAnalog(TaskTwo);