NI-DAQmx .NET Framework 4.0 API Reference

Content Type
Programming Language
Current manual
Table of Contents
Product DocumentationNI-DAQmx .NET Framework 4.0 API Reference...Timing MethodsTiming.ConfigureChangeDetection Method (String, String, SampleQuantityMode, Int32)Current page
Table of Contents

Timing.ConfigureChangeDetection Method (String, String, SampleQuantityMode, Int32)

Timing.ConfigureChangeDetection Method (String, String, SampleQuantityMode, Int32)

TimingConfigureChangeDetection Method (String, String, SampleQuantityMode, Int32)

Configures the task to acquire samples on the rising and/or falling edges of the specified lines or ports and sets the number of samples to acquire.

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

ExceptionCondition
DaqExceptionThe NI-DAQmx driver returned an error.

Remarks

Use this method to configure a task to acquire a finite number of samples using change detection timing.

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.

See Also

Was this information helpful?