![]() | Download Help (Windows Only) |
int32 DAQmxRegisterEveryNSamplesEvent (TaskHandle taskHandle, int32 everyNsamplesEventType, uInt32 nSamples, uInt32 options, DAQmxEveryNSamplesEventCallbackPtr callbackFunction, void *callbackData);
Registers a callback function to receive an event when the
specified number of samples is written from the device to the buffer or from the
buffer to the device. This function only works with devices that support
buffered tasks.
When you stop a task explicitly any pending events are discarded. For example,
if you call DAQmxStopTask then you do not
receive any pending events.
Input | |||||||||||||
Name | Type | Description | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
taskHandle | TaskHandle | The task used in this function. | |||||||||||
everyNsamplesEventType |
|
The type of event you want to receive.
|
|||||||||||
nSamples |
|
The number of samples after which each event should occur. | |||||||||||
options |
|
Use this parameter to set certain options. You can combine flags with the bitwise-OR operator ('|') to set multiple options. Pass a value of zero if no options need to be set.
|
|||||||||||
callbackFunction |
|
The function that you want DAQmx to call when the event occurs. The function
you pass in this parameter must have the following prototype: int32 CVICALLBACK Callback (TaskHandle taskHandle, int32 everyNsamplesEventType, uInt32 nSamples, void *callbackData); Upon entry to the callback, the taskHandle parameter contains the handle to the task on which the event occurred. The everyNSamplesEventType parameter contains the value you passed in the everyNSamplesEventType parameter of this function. The nSamples parameter contains the value you passed in the nSamples parameter of this function. The callbackData parameter contains the value you passed in the callbackData parameter of this function. Passing NULL for this parameter unregisters the event callback function. |
|||||||||||
callbackData |
|
A value that you want DAQmx to pass to the callback function as the function data parameter. Callback functions may be called even after a task is cleared. Do not pass the address of a local variable, a variable associated with a cleared task, or any other variable that might not be valid when the function is executed. |
Name | Type | Description |
---|---|---|
status | int32 | The error code returned by the function in the event of an error or warning. A value of 0 indicates success. A positive value indicates a warning. A negative value indicates an error. |
Helpful
Not Helpful