Boards that Support the Function
Operation Sends SRQ (Service Request).
Format
(VB.NET)
Dim Eoi, Ret As Integer
Ret = GpSrq(Eoi)
(C)
DWORD Eoi, Ret;
Ret = GpSrq(Eoi);
(C#)
uint Eoi, Ret;
Ret = gpib.Srq(Eoi);
(Python)
Eoi, Ret = ctypes.c_ulong(), ctypes.c_ulong()
Ret.value = GpibPy.GpSrq(Eoi)
Mode Slave mode only
Parameters Eoi : EOI specification (if transmitting status bytes)
0 : Without EOI
1 : With EOI
Ret : Return value
0 : Normal completion
80 : GpIni() hasn't execute
140 : Asynchronous function is executing now
255 : Illegal call
(See "Return Values" for details.)
Notes in GpStb, be sure to add status bytes at 40H.