Revert "Fixes float encoding/decoding for both big and little endian (fixes #665...
[libmodbus.git] / docs / modbus_disable_quirks.md
blob8942e66a49ac182201567bd35f15b6a79d5181b5
1 # modbus_disable_quirks
3 ## Name
5 modbus_disable_quirks - disable a list of quirks according to a mask
7 ## Synopsis
9 ```c
10 int modbus_disable_quirks(modbus_t *ctx, unsigned int quirks_mask);
11 ```
13 ## Description
15 The function shall disable the quirks according to the provided mask. It's
16 useful to revert changes applied by a previous call to
17 [modbus_enable_quirks](modbus_enable_quirks.md)
19 To reset all quirks, you can use the specific value `MODBUS_QUIRK_ALL`.
21 ```c
22 modbus_enable_quirks(ctx, MODBUS_QUIRK_MAX_SLAVE | MODBUS_QUIRK_REPLY_TO_BROADCAST);
24 ...
26 // Reset all quirks
27 modbus_disable_quirks(ctx, MODBUS_QUIRK_ALL);
28 ```
30 ## Return value
32 The function shall return 0 if successful. Otherwise it shall return -1 and set
33 errno.
35 ## See also
37 - [modbus_enable_quirks](modbus_enable_quirks.md)