 Boards 
 that Support the Function
Boards 
 that Support the Function
 Operation 
             Scheduling 
 is performed in driver processing and the load of OS is mitigated.
 Operation 
             Scheduling 
 is performed in driver processing and the load of OS is mitigated.
 Format
 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)
 Mode                   Master 
 mode/Slave mode
 Mode                   Master 
 mode/Slave mode
 Parameters
 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
(See "Return 
 Values" for details.)
 Notes
 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.