You're reading the documentation for an older, but still supported version (GL013300).
For information on the latest version, please have a look at GL013301.

MODBUS_DATA_LIST

This structure defines a collection of Modbus configuration entries, each represented by a MODBUS_DATA structure. It is typically used when multiple Modbus devices or registers must be configured at once.

BYTE#

Field Name

Data Type

Value

Remarks

0

_nCount

unsigned short

Number of Modbus data

2

_tRegister

MODBUS_DATA [MAX_MODBUS_TOTAL_REGISTERS]

Refer to the Definition of Struct

Total size : 11,202 bytes

Defined in: DRFS.h

typedef struct _MODBUS_DATA_LIST
{
    /* Number of Modbus configurations */
    unsigned short  _nCount;

    /* Array of Modbus data entries */
    MODBUS_DATA     _tRegister[MAX_MODBUS_TOTAL_REGISTERS];

} MODBUS_DATA_LIST, *LPMODBUS_DATA_LIST;