CanSetTimeout


Function

Set the timeout time.

Format

Ret = CanSetTimeout ( Id , Timeout )

Parameters

Id [ C: short ] [ Python: ctypes.c_short ]
Specify the device ID retrieved from CanInit.

Timeout [ C: unsigned int ] [ Python: ctypes.c_uint ]
Specify the timeout time in msec.
The setting range is 10 to 60000.

Return Value

Ret [ C: long ] [ Python: ctypes.c_long ]

Definition

Value
[Dec]

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).

CAN_ERR_SYS_TIMEOUT_TIME

20180

The timeout time is outside the settable range.

The others (See also: Details of Error Code)

Initial Value

Timeout = 10000  (10sec)

Remarks

Set the transmission timeout time.

Example

Set the timeout time to 3sec (= 3000msec).

C

long Ret;
Ret = CanSetTimeout( Id , 3000 );
 

Python

Ret = ctypes.c_long()


Ret.value = ccan.CanSetTimeout( Id , 3000 )
 

See Also

CanGetTimeout