CanGetTimeout


Function

Get the timeout time.

Format

Ret = CanGetTimeout ( Id , Timeout )

Parameters

Id [ VB.NET: Short ] [ C, C++: short ] [ C#: short ] [ Python: ctypes.c_short ]
Specify the device ID retrieved from CanInit.

Timeout [ VB.NET: UInteger ] [ C, C++: unsigned long * ] [ C#: out uint ] [ Python: ctypes.POINTER(ctypes.c_uint) ]
Get the timeout time in msec.

Return Value

Ret [ VB.NET: Integer ] [ C, C++: long ] [ C#: int ] [ Python: ctypes.c_long ]

Definition

Value
[Dec]

Description

CAN_ERR_SUCCESS

0

Normality completion

CAN_ERR_SYS_RECOVERED_FROM_STANDBY

7

Execute CanResetDevice function because the device has recovered from standby mode.

CAN_ERR_DLL_INVALID_ID

10001

Invalid ID specified.

CAN_ERR_DLL_CALL_DRIVER

10002

Driver can't be called (Failed in the device I/O control).

The others (See also: Details of Error Code)

Initial Value

Timeout = 10000  (10sec)

Remarks

Get the transmission timeout time.

Example

Get the timeout time.

VB.NET

Dim Ret As Integer
Dim Timeout As UInteger

Ret = CanGetTimeout ( Id , Timeout )
 

C, C++

long Ret;

unsigned long Timeout;
Ret = CanGetTimeout( Id , &Timeout );
 

C#

int Ret;

uint Timeout;
Ret = can.GetTimeout( Id , out Timeout );
 

Python

Ret = ctypes.c_long()

Timeout = ctypes.ctypes.c_uint()

Ret.value = ccan.CanGetTimeout( Id , ctypes.byref(Timeout) )
 

See Also

CanSetTimeout