GpStstop

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

 

 

image\head10.gif Operation             Sets the ESC key check in DLL to on or off.

 

image\head10.gif Format                 

(VB.NET)

Dim Stp, Ret As Integer

Ret = GpStstop(Stp)

 

(C)

DWORD Stp, Ret;

Ret = GpStstop(Stp);

 

(C#)

uint Stp, Ret;

Ret = gpib.Ststop(Stp);

 

(Python)

Stp, Ret = ctypes.c_ulong(), ctypes.c_ulong()

Ret.value = GpibPy.GpStstop(Stp)

 

image\head10.gif Mode                   Master mode/Slave mode

 

image\head10.gif Parameters          Stp       :  Esc key setting

0     : Not to be checked

1     : To be checked

Ret       : Return value

0     : Normal completion

80    : GpIni() hasn't execute

140  : Asynchronous function is executing now

255  : Parameter error

(See "Return Values" for details.)

 

image\head10.gif Notes                  By default, ESC key setting is checked. If the "ESC key on" is detected during interaction, the function is forcibly exited from DLL. (except for GpSwait)