機能
速度分解能の設定情報を取得します。
書式
Ret = SmcWGetResolveSpeed( Id , AxisNo , ResolveSpeed )
引数
Id [ C, C++: short ] [ Python: ctypes.c_short ]
SmcWInit 関数で取得したデバイスIDを指定します。
AxisNo [ C, C++: short ] [ Python: ctypes.c_short ]
軸番号を指定します。
ResolveSpeed [ C, C++: double * ] [ Python: ctypes.POINTER(ctypes.c_double) ]
速度分解能の値を格納する変数のアドレスを指定します。
戻り値
Ret [ C, C++: long ] [ Python: ctypes.c_long ]
0 |
正常終了 |
0以外 |
異常終了 |
参照:エラーコード詳細
説明
デバイス動作中での実行が可能です。
使用例
軸番号1の速度分解能の設定情報を取得します。
C, C++
long Ret;
double ResolveSpeed ;
Ret = SmcWGetResolveSpeed( Id , 1, &ResolveSpeed );
Python
Ret = ctypes.c_long()
ResolveSpeed = ctypes.c_double()
Ret.value = csmc.SmcWGetResolveSpeed( Id , 1, ctypes.byref(ResolveSpeed) )
関連項目