Setup Example

image\head10.gif VB.NET

Dim Ret, Delim, Eoi As Integer

Delim = 1  ' Specifying CR+LF

Eoi = 1  ' With EOI

Ret = GpDelim(Delim, Eoi)

 

image\head10.gif C

DWORD Ret, Delim, Eoi;

Delim = 1; /* Specifying CR+LF */

Eoi = 1; /* With EOI */

Ret = GpDelim(Delim, Eoi);

 

image\head10.gif C#

uint Ret, Delim, Eoi;

Delim = 1; /* Specifying CR+LF */

Eoi = 1; /* With EOI */

Ret = gpib.Delim(Delim, Eoi);

 

image\head10.gif Python

Ret, Delim, Eoi = ctypes.c_ulong(), ctypes.c_ulong(), ctypes.c_ulong()

Delim.value = 1 # Specifying CR+LF

Eoi.value = 1 # With EOI

Ret.value = GpibPy.GpDelim(Delim, Eoi)