GpGet

image\BLTLRGSQ.gifBoards that Support the Function image\SETUP.gif image\SANBTN.gif

 

 

image\head10.gif Operation             Transmits the Group Execute Trigger command (GET).

 

image\head10.gif Format                 

(VB.NET)

Dim Adr, Ret As Integer

Ret = GpGet(Adr)

 

(C)

DWORD Adr, Ret;

Ret = GpGet(Adr);

 

(C#)

uint Adr, Ret;

Ret = gpib.Get(Adr);

 

(Python)

Ret = ctypes.c_ulong()

Ret.value = GpibPy.GpGet(Adr)

 

image\head10.gif Mode                   Master mode only

 

image\head10.gif Parameters            Adr        : Destination device address

Valid range : 0 to 30

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

254   : Timeout

255   : Parameter error

(See "Return Values" for details.)