AioSetAoSamplingDataEx


Function

Sets the output data. The output data is specified in voltage or current.

Format

Ret = AioSetAoSamplingDataEx ( Id , AoSamplingTimes , AoData )

Parameters

Id [ C, C++ : short ] [ Python : ctypes.c_short ]
Specifies the Device ID retrieved from AioInit function.

AoSamplingTimes [ C, C++ : long ] [ Python : ctypes.c_long ]
Sets the number of generating for the output data.

AoData [ C, C++ : float * ] [ Python : ctypes.POINTER(ctypes.c_float) ]
Specifies the address of array which stores the output data. please specify the output data in voltage or current.
The available value differs by the device.

Return value

Ret [ C, C++ : long ] [ Python : ctypes.c_long ]

Return values

Content

0

Normality completion

7

Execute AioResetDevice function because the device has recovered from standby mode

10001

Invalid Id was specified
Use the Id retrieved from AioInit to specify the Id in this function.

10002

AIO driver can't be called
At first, perform AioInit function.

13540

The value of AoSamplingTimes is outside the designated range of the function

13541

Pointer to AoData is NULL
Specify the address of variable to parameter.

20001

This function can't be used by this device

20002

Can not use while by another device works
To use this function, analog output operation must be stopped.

20003

Can not use because another process is using the device
When another process is using the device, all functions except for those that support multi-process can not be performed.

23540

Output data exceed memory capacity

23541

Failed in the allocation of the memory

Remarks

The usage differs by the memory type.

In FIFO memory:
The output data is added at the end of the memory after this function is executed every time.
Clear the data from the memory by using AioResetAoMemory function.
The output data can be added even if the device is in operation.

In RING memory:
It ensures the output data which is set by function in the memory.
If this function is executed once more, the last memory data are lost. 
It can't be used if the device is in operation.

Before this function is executed, please perform AioSetAoMemoryType function.

When you use this function and "simple functions", please refer "How to use simple functions and continuous functions at the same time" topics.

Example

Sets the 1000 generating output data.

C, C++

long Ret;
float AoData[1000];
short i;
for( i = 0 ; i < 1000 ; i++ ){
AoData[i] = 5.0;
}
Ret = AioSetAoSamplingDataEx ( Id , 1000 , &AoData[0] );
 

Python

Ret = ctypes.c_long()
AoDataType = ctypes.c_float * 1000
AoData = AoDataType()
for i in range(1000):
    AoData[i] = 5.0
Ret.value = caio.AioSetAoSamplingDataEx ( Id , 1000 , AoData )
 

See also

AioSetAoSamplingData AioGetAoSamplingTimes