Instructions to build libmodbus in a VS project
[libmodbus.git] / docs / modbus_rtu_set_serial_mode.md
blobd20aabd2c0ef933a46bfa6306b1bec9d696bd589
1 # modbus_rtu_set_serial_mode
3 ## Name
5 modbus_rtu_set_serial_mode - set the serial mode
7 ## Synopsis
9 ```c
10 int modbus_rtu_set_serial_mode(modbus_t *ctx, int mode);
11 ```
13 ## Description
15 The *modbus_rtu_set_serial_mode()* function shall set the selected serial
16 mode:
18 - **MODBUS_RTU_RS232**, the serial line is set for RS232 communication. RS-232
19   (Recommended Standard 232) is the traditional name for a series of standards
20   for serial binary single-ended data and control signals connecting between a
21   DTE (Data Terminal Equipment) and a DCE (Data Circuit-terminating Equipment).
22   It is commonly used in computer serial ports.
24 - **MODBUS_RTU_RS485**, the serial line is set for RS485 communication.
25 EIA-485, also known as TIA/EIA-485 or RS-485, is a standard defining the
26 electrical characteristics of drivers and receivers for use in balanced
27 digital multipoint systems. This standard is widely used for communications
28 in industrial automation because it can be used effectively over long
29 distances and in electrically noisy environments.
31 This function is only supported on Linux kernels 2.6.28 onwards.
33 ## Return value
35 The function shall return 0 if successful. Otherwise it shall return -1 and set
36 errno to one of the values defined below.
38 ## Errors
40 - *EINVAL*, the current libmodbus backend is not RTU.
41 - *ENOTSUP*, the function is not supported on your platform.
43 If the call to `ioctl()` fails, the error code of ioctl will be returned.