Instructions to build libmodbus in a VS project
[libmodbus.git] / docs / modbus_rtu_set_rts_delay.md
blob1ab1258b56c9c8141fa821fe6e7f14cc8ab14f1b
1 # modbus_rtu_set_rts_delay
3 ## Name
5 modbus_rtu_set_rts_delay - set the RTS delay in RTU
7 ## Synopsis
9 ```c
10 int modbus_rtu_set_rts_delay(modbus_t *ctx, int us);
11 ```
13 ## Description
15 The `modbus_rtu_set_rts_delay()` function shall set the Request To Send delay
16 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 `modbus_rtu_set_rts_delay()` function shall return 0 if successful.
23 Otherwise it shall return -1 and set errno.
25 ## Errors
27 - *EINVAL*, the libmodbus backend is not RTU or a negative delay was specified.
29 ## See also
31 - [modbus_rtu_get_rts_delay](modbus_rtu_get_rts_delay.md)