public pure elemental subroutine dm_modbus_register_parse(string, register, error)
Parses string for the following Modbus parameters and returns the
values in register:
Parameter
Type
Description
access
string
Read from or write to register (read, write).
slave
integer
Slave id.
address
integer
Register address.
type
string
Register type (int16, int32, uint16, uint32, float).
order
string
Byte order ('none,abcd,badc,cdab,dcba`).
scale
integer
Scale denominator (only for reading).
value
integer
Integer value (only for writing).
Key and value are separated by character =, parameter fields by
character ,. The parsing of parameter keys and values is
case-insensitive, i.e., INT16 equals int16 and ABCD equals
abcd.
A string of parameters to read a register value as 2-byte signed
integer and scale it by 1/10:
access=read,slave=10,address=40050,scale=10
A string of parameters to read a float value in ABCD byte order:
Nodes of different colours represent the following:
Solid arrows point from a procedure to one which it calls. Dashed
arrows point from an interface to procedures which implement that interface.
This could include the module procedures in a generic interface or the
implementation in a submodule of an interface in a parent module.