You are here: Start » Hardware Support » National Instruments » DAQmx_ReadCounterArray
DAQmx_ReadCounterArray
Header: | ThirdPartySdk.h |
---|---|
Namespace: | avl |
Reads multiple samples from a specified counter task.
Syntax
void avl::DAQmx_ReadCounterArray ( DAQmx_ReadCounterArrayState& ioState, atl::Optional<const atl::String&> inDeviceID, avl::DAQmxTaskID inTaskID, int inSamples, atl::Optional<int> inTimeout, atl::Array<float>& outValues, atl::Conditional<avl::DAQmxTaskID>& outTaskID )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
ioState | DAQmx_ReadCounterArrayState& | Object used to maintain state of the function. | |||
inDeviceID | Optional<const String&> | NIL | Device alias, product name or a serial number | ||
inTaskID | DAQmxTaskID | ID of task to read samples from | |||
inSamples | int | 1 - | Number of samples to read | ||
inTimeout | Optional<int> | NIL | Time (in milliseconds) to wait for the function to read samples | ||
outValues | Array<float>& | Array of read values | |||
outTaskID | Conditional<DAQmxTaskID>& | ID of a created task |
Remarks
Device driver software
This filter is intended to cooperate with digital I/O cards using its vendor driver software. To be able to connect to a card it is required to install NI-DAQmx driver software. Currently Aurora Vision Studio requires NI-DAQmx version 23.3.
NI-DAQmx driver software can be downloaded from the following website: https://www.ni.com/pl-pl/support/downloads/drivers/download.ni-daq-mx.html#480879.
Device identification
When there is only one device connected to computer, inDeviceID field can be set to Auto. In this situation first available device will be found and connected.
inDeviceID can be used to pick one of multiple devices connected to computer. Set this field to Device alias (for example "Dev1"), product name or serial number. This parameters should be available in Measurement & Automation Explorer.
Multithreaded environment
See Also
- DAQmx_ReadAnalogScalar – Reads a sample from a specified analog task.
- DAQmx_WriteAnalogScalar – Sets an analog input to a specified value.
- DAQmx_WriteAnalogArray – Writes multiple samples to a specified analog task.