AioGetAiRepeatTimes


機能

リピート回数を取得します。

書式

Ret = AioGetAiRepeatTimes ( Id , AiRepeatTimes )

引数

Id [ VB.NET: Short ] [ C, C++: short ] [ C#: short ] [ Python: ctypes.c_short ]
AioInit 関数で取得したデバイスIDを指定します。

AiRepeatTimes [ VB.NET: Integer ] [ C, C++: long * ] [ C#: out int ] [ Python: ctypes.POINTER(ctypes.c_long) ]
リピート回数を格納する変数のアドレスを指定します。

0

リピート動作を無限に繰り返します。

1~

指定回数分のリピート動作を行います。

戻り値

Ret [ VB.NET: Integer ] [ C, C++: long ] [ C#: int ] [ Python: ctypes.c_long ]

戻り値

内容

0

正常終了

7

スタンバイモードから復帰したため、AioResetDevice関数を実行してください

10001

無効なIDが指定されました
関数に指定するIDは、AioInitで取得したIDを使用してください。

10002

ドライバを呼び出せません
始めにAioInit関数を実行しください。

11110

AiRepeatTimesのポインタがNULLです
パラメータには変数のアドレスを指定してください。

20001

使用しているデバイスではこの関数を使用することができません

20002

デバイスが動作中のため実行できません
この関数を使用するには、アナログ入力動作が停止している必要があります。

20003

他のプロセスがデバイスを使用しているため、実行できません
他のプロセスがデバイスを使用しているときは、マルチプロセス対応関数以外実行できません。

初期値

すべてのデバイスで1

説明

リピート動作とは、サンプリング開始から停止までの一連の動作の繰り返しです。
アナログ入力機能を持たないデバイスでは使用できません。
デバイスが動作中の場合、この関数は実行できません。

使用例

設定されているリピート回数を取得します。

VB.NET

Dim Ret As Integer
Dim AiRepeatTimes As Integer
Ret = AioGetAiRepeatTimes ( Id , AiRepeatTimes )
 

C, C++

long Ret;
long AiRepeatTimes;
Ret = AioGetAiRepeatTimes ( Id , &AiRepeatTimes );
 

C#

int Ret;
int AiRepeatTimes;
Ret = aio.GetAiRepeatTimes ( Id , out AiRepeatTimes );
 

Python

Ret = ctypes.c_long()
AiRepeatTimes = ctypes.c_long()
Ret.value = caio.AioGetAiRepeatTimes ( Id , ctypes.byref(AiRepeatTimes) )
 

関連項目

AioSetAiRepeatTimes AioGetAiRepeatCount