Timing.ConfigureChangeDetection Method (String, String, SampleQuantityMode, Int32)
- Updated2023-02-21
- 2 minute(s) read
TimingConfigureChangeDetection Method (String, String, SampleQuantityMode, Int32)
Namespace: NationalInstruments.DAQmx
Assembly: NationalInstruments.DAQmx (in NationalInstruments.DAQmx.dll) Version: 20.7.40.49302
Syntax
public void ConfigureChangeDetection( string diRisingEdgePhysicalChannels, string diFallingEdgePhysicalChannels, SampleQuantityMode sampleMode, int samplesPerChannel )
Public Sub ConfigureChangeDetection ( diRisingEdgePhysicalChannels As String, diFallingEdgePhysicalChannels As String, sampleMode As SampleQuantityMode, samplesPerChannel As Integer )
Parameters
- diRisingEdgePhysicalChannels
- Type: SystemString
The names of the digital lines or ports on which to detect rising edges. The lines or ports must be contained in the task. You can specify a string that defines a list or range of channels for this parameter. - diFallingEdgePhysicalChannels
- Type: SystemString
The names of the digital lines or ports on which to detect falling edges. The lines or ports must be contained in the task. You can specify a string that defines a list or range of channels for this parameter. - sampleMode
- Type: NationalInstruments.DAQmxSampleQuantityMode
The duration of the task. A task is either finite and stops when the specified number of samples have been acquired, or it is continuous and continues to acquire samples until the task is explicitly stopped. - samplesPerChannel
- Type: SystemInt32
The number of samples to acquire from each channel in the task if sampleMode is FiniteSamples. If sampleMode is ContinuousSamples, NI-DAQmx uses this value to determine the buffer size.
Exceptions
Exception | Condition |
---|---|
DaqException | The NI-DAQmx driver returned an error. |
Remarks
The NI-DAQmx driver does not determine if the requested settings are possible until the task is verified. This method does not throw an exception for parameter values that are not compatible with your hardware or other settings in your task. To determine if all of the settings for a Task are valid, you must verify the task by starting the task, either with Start or by reading from or writing to the task, or by calling Control(TaskAction) with Verify.
You cannot apply this method to a subset of devices in the task, and you must apply this method to the task as a whole. You must call this method on the instance of Timing returned from the Timing property on the Task class. Accessing this method on instances of Timing returned from the ItemString property throws an exception.