09-25-2009 04:26 PM
Solved! Go to Solution.
09-30-2009 04:15 PM
There are two properties in DAQmx that may be useful to you: the Offset, and the RelativeTo properties. The Offset parameter changes where in the buffer a read begins, and the RelativeTo parameter determines what that offset is relative to (such as the first sample or the most recent sample).
int32 __CFUNC DAQmxSetReadRelativeTo(TaskHandle taskHandle, int32 data);
int32 __CFUNC DAQmxSetReadOffset(TaskHandle taskHandle, int32 data);
-Christina