Add checks for netinet/ip.h and gai_strerror
[libmodbus.git] / docs / modbus_rtu_get_rts_delay.md
blob7f6b57b77773f57a413ccaa9e5cac01a7d2f697a
1 # modbus_rtu_get_rts_delay
3 ## Name
5 modbus_rtu_get_rts_delay - get the current RTS delay in RTU
7 ## Synopsis
9 ```c
10 int modbus_rtu_get_rts_delay(modbus_t *ctx);
11 ```
13 ## Description
15 The `modbus_rtu_get_rts_delay()` function shall get the current Request To Send
16 delay period of the libmodbus context 'ctx'.
18 This function can only be used with a context using a RTU backend.
20 ## Return value
22 The function shall return the current RTS delay in microseconds if successful.
23 Otherwise it shall return -1 and set errno to one of the values defined below.
25 ## Errors
27 - *EINVAL*, the libmodbus backend is not RTU.
29 ## See also
31 - [modbus_rtu_set_rts_delay](modbus_rtu_set_rts_delay.md)