Instructions to build libmodbus in a VS project
[libmodbus.git] / docs / modbus_mask_write_register.md
blobb0bfee995cfdc911ed32fc5d75e4f187c233b76c
1 # modbus_mask_write_register
3 ## Name
5 modbus_mask_write_register - mask a single register
7 ## Synopsis
9 ```c
10 int modbus_mask_write_register(modbus_t *ctx, int addr, uint16_t and, uint16_t or);
11 ```
13 ## Description
15 The *modbus_mask_write_register()* function shall modify the value of the
16 holding register at the address 'addr' of the remote device using the algorithm:
18   new value = (current value AND 'and') OR ('or' AND (NOT 'and'))
20 The function uses the Modbus function code 0x16 (mask single register).
22 ## Return value
24 The function shall return 1 if successful. Otherwise it shall return -1 and set
25 errno.
27 ## See also
29 - [modbus_read_registers](modbus_read_registers.md)
30 - [modbus_write_registers](modbus_write_registers.md)