File: modbus_set_float_cdab.md

package info (click to toggle)
libmodbus 3.1.11-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,112 kB
  • sloc: ansic: 5,495; javascript: 137; makefile: 90; sh: 26
file content (29 lines) | stat: -rw-r--r-- 712 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# modbus_set_float_cdab

## Name

modbus_set_float_cdab - set a float value in 2 registers using CDAB byte order

## Synopsis

```c
void modbus_set_float_cdab(float f, uint16_t *dest);
```

## Description

The *modbus_set_float_cdab()* function shall set a float to 4 bytes in swapped
words Modbus format (CDAB order instead of ABCD). The `dest` array must be
pointer on two 16 bits values to be able to store the full result of the
conversion.

## Return value

There is no return values.

## See also

- [modbus_get_float_cdab](modbus_get_float_cdab.md)
- [modbus_set_float_abcd](modbus_set_float_abcd.md)
- [modbus_set_float_badc](modbus_set_float_badc.md)
- [modbus_set_float_dcba](modbus_set_float_dcba.md)