Boards that Support the Function
Operation Waits for the specified period of time.
Format
(VB.NET)
Dim Timeout, Ret As Integer
Ret = GpWaittime(Timeout)
(C)
DWORD Timeout, Ret;
Ret = GpWaittime(Timeout);
(C#)
uint Timeout, Ret;
Ret = gpib.Waittime(Timeout);
(Python)
Timeout, Ret = ctypes.c_ulong(), ctypes.c_ulong()
Ret.value = GpibPy.GpWaittime(Timeout)
Mode Master mode/Slave mode
Parameters Timeout : Set time
Specified value (1 to FFFFH) x 1[msec]
Ret : Return value
0 : Normal completion
80 : GpIni() hasn't execute
140 : Asynchronous function is executing now
240 : ESC key pressed
252 : GP-IB error
255 : Parameter error
(See "Return Values" for details.)