Get the timeout time.
Ret = CanGetTimeout ( Id , Timeout )
Id
[ C: short ] [ Python: ctypes.c_short ]
Specify the device ID retrieved from CanInit.
Timeout
[ C: unsigned int * ] [ Python: ctypes.POINTER(ctypes.c_uint) ]
Get the timeout time in msec.
Ret [ C: long ] [ Python: ctypes.c_long ]
Definition |
Value |
Description |
CAN_ERR_SUCCESS |
0 |
Normality completion |
CAN_ERR_DLL_INVALID_ID |
10001 |
Invalid ID specified. |
CAN_ERR_DLL_CALL_DRIVER |
10002 |
Driver can't be called (Failed in the ioctl). |
The others (See also: Details of Error Code)
Timeout = 10000 (10sec)
Get the transmission timeout time.
Get the timeout time.
C |
long Ret; unsigned int Timeout; |
Python |
Ret = ctypes.c_long() Timeout = ctypes.ctypes.c_uint() Ret.value
= ccan.CanGetTimeout( Id , ctypes.byref(Timeout) ) |