Set the timeout time.
Ret = CanSetTimeout ( Id , Timeout )
Id
[ VB.NET: Short ] [ C, C++: short ] [ C#: short ]
Specify the device ID retrieved from CanInit.
Timeout
[ VB.NET: UInteger ] [ C, C++: unsigned long ] [ C#: uint ]
Specify the timeout time in msec.
The setting range is 10 to 60000.
Ret [ VB.NET: Integer ] [ C, C++: long ] [ C#: int ]
Definition |
Value |
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). |
CAN_ERR_SYS_TIMEOUT_TIME |
20180 |
The timeout time is outside the settable range. |
The others (See also: Details of Error Code)
Timeout = 10000 (10sec)
Set the transmission timeout time.
Set the timeout time to 3sec (= 3000msec).
VB.NET |
Dim Ret As Integer Ret = CanSetTimeout (
Id , 3000 ) |
C, C++ |
long Ret; |
C# |
int Ret; |