10-06-2006 02:08 PM
10-09-2006 06:48 AM
At a quick glance, the main issue is that the two tasks are not synchronized to start at the exact same time. If you look closely at your data, one of the counters starts later and its measurement # i should correspond to the other counter's measurement # (i+n), where n is the # of samples worth of offset due to different start times.
To sync the start times you'll need both counter tasks to use an "Arm Start" Trigger, which can be configured with options under the DAQmx Trigger Property Node. The regular digital start trigger can only be used to sync counter outputs, the "arm start" trigger is needed to sync counter input measurements.
-Kevin P.
10-09-2006 12:19 PM
10-09-2006 03:57 PM