I am generating a finite pulsetrain with the following code:
myTask = New Task(String.Empty)
mNIClockChannel = myTask.COChannels.CreatePulseChannelFrequency(mClockChannelName, _
String.Empty, COPulseFrequencyUnits.Hertz, COPulseIdleState.Low, 0.0, _
mFrequency, 0.5)
myTask.Timing.ConfigureImplicit(SampleQuantityMode.FiniteSamples, HowFar)
myTask.Start()
It appears to use the timer that I specify in the variable 'mClockChannelName' for the pulses, and an unspecified 2nd timer to count the pulses.
Is there a way to explicitly pick which timer the code will use for the pulse bookkeeping?