GpSmoothMode

image\BLTLRGSQ.gifBoards that Support the Function

 

 

image\head10.gif Operation             Scheduling is performed in driver processing and the load of OS is mitigated.

 

image\head10.gif Format                 

(VB.NET)

Dim Ret As Integer

Dim Mode As Integer

Ret = GpSmoothMode (Mode)

 

(C)

DWORD Ret;

DWORD Mode;

Ret = GpSmoothMode (Mode);

 

(C#)

uint Ret;

uint Mode;

Ret = gpib.SmoothMode (Mode);

 

(Python)

Ret = ctypes.c_ulong()

Mode = ctypes.c_ulong()

Ret.value = GpibPy.GpSmoothMode(Mode)

 

 

image\head10.gif Mode                   Master mode/Slave mode

 

image\head10.gif Parameters          Mode  :  It specifies whether scheduling is performed or not.

0       :  It does not carry out.

1       :  It carries out.

Ret    :  End information (return value)

0       :  Normal end

80      :  Initialization un-performing.

140    :  Under execution of other asynchronous functions

255    :  Parameter error

 

image\head10.gif Notes                   1. By setting to the state of performing scheduling, it is possible to prevent a significant decrease in processing when used at the same time as other drivers.

2. When performing scheduling, the absolute processing speed will be lower than when not performing scheduling.