File: modbus_set_float_badc.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 (28 lines) | stat: -rw-r--r-- 706 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
# modbus_set_float_badc

## Name

modbus_set_float_badc - set a float value in 2 registers using BADC byte order

## Synopsis

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

## Description

The *modbus_set_float_badc()* function shall set a float to 4 bytes in swapped
bytes Modbus format (BADC 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_badc](modbus_get_float_badc.md)
- [modbus_set_float_abcd](modbus_set_float_abcd.md)
- [modbus_set_float_cdab](modbus_set_float_cdab.md)
- [modbus_set_float_dcba](modbus_set_float_dcba.md)