Instructions to build libmodbus in a VS project
[libmodbus.git] / docs / modbus_set_bits_from_byte.md
bloba3c4122d96ee1b3de475a423f0ab38e0ecb34dcd
1 # modbus_set_bits_from_byte
3 ## Name
5 modbus_set_bits_from_byte - set many bits from a single byte value
8 ## Synopsis
10 ```c
11 void modbus_set_bits_from_byte(uint8_t *dest, int index, const uint8_t value);
12 ```
14 ## Description
16 The *modbus_set_bits_from_byte()* function shall set many bits from a single
17 byte. All 8 bits from the byte `value` will be written to `dest` array starting
18 at `index` position.
20 ## Return value
22 There is no return values.
24 ## See also
26 - [modbus_set_bits_from_byte](modbus_set_bits_from_byte.md)
27 - [modbus_set_bits_from_bytes](modbus_set_bits_from_bytes.md)