5 modbus_enable_quirks - enable a list of quirks according to a mask
10 int modbus_enable_quirks(modbus_t *ctx, unsigned int quirks_mask);
15 The function is only useful when you are confronted with equipment which does
16 not respect the protocol, which behaves strangely or when you wish to move away
19 In that case, you can enable a specific quirk to workaround the issue, libmodbus
20 offers the following flags:
22 - `MODBUS_QUIRK_MAX_SLAVE` allows slave adresses between 247 and 255.
23 - `MODBUS_QUIRK_REPLY_TO_BROADCAST` force a reply to a broacast request when the
24 device is a slave in RTU mode (should be enabled on the slave device).
26 You can combine the flags by using the bitwise OR operator.
30 The function shall return 0 if successful. Otherwise it shall return -1 and set
35 - [modbus_disable_quirks](modbus_disable_quirks.md)