Add SECURITY.md (closes #613)
[libmodbus.git] / doc / modbus_get_byte_timeout.txt
blobd7ba0704e0f3cd37d83ffcbb48477c27ab99bb71
1 modbus_get_byte_timeout(3)
2 ==========================
5 NAME
6 ----
7 modbus_get_byte_timeout - get timeout between bytes
10 SYNOPSIS
11 --------
12 *int modbus_get_byte_timeout(modbus_t *'ctx', uint32_t *'to_sec', uint32_t *'to_usec');*
15 DESCRIPTION
16 -----------
17 The *modbus_get_byte_timeout()* function shall store the timeout interval
18 between two consecutive bytes of the same message in the _to_sec_ and _to_usec_
19 arguments.
22 RETURN VALUE
23 ------------
24 The function shall return 0 if successful. Otherwise it shall return -1 and set
25 errno.
28 EXAMPLE
29 -------
30 [source,c]
31 -------------------
32 uint32_t to_sec;
33 uint32_t to_usec;
35 /* Save original timeout */
36 modbus_get_byte_timeout(ctx, &to_sec, &to_usec);
37 -------------------
40 SEE ALSO
41 --------
42 linkmb:modbus_set_byte_timeout[3]
43 linkmb:modbus_get_response_timeout[3]
44 linkmb:modbus_set_response_timeout[3]
47 AUTHORS
48 -------
49 The libmodbus documentation was written by Stéphane Raimbault
50 <stephane.raimbault@gmail.com>