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.
For information on the latest version, please have a look at GL013301.
MONITORING_MODBUS
This structure provides the current Modbus I/O states registered in the robot controller. It aggregates the count and an array of Modbus registers.
BYTE# |
Field Name |
Data Type |
Value |
Remarks |
|---|---|---|---|---|
0 |
|
|
Number of Modbus I/O signals currently registered |
|
2 |
|
Modbus I/O signal information array (each entry size: 34 bytes) |
Total size: 3402 bytes
Defined in: DRFS.h
typedef struct _MONITORING_MODBUS
{
unsigned short _iRegCount; /* modbus i/o count */
MODBUS_REGISTER _tRegister[MAX_MODBUS_TOTAL_REGISTERS]; /* modbus i/o values */
} MONITORING_MODBUS, *LPMONITORING_MODBUS;
Note
The
_iRegCountvalue (0..MAX_MODBUS_TOTAL_REGISTERS) indicates how many leading entries in_tRegisterare valid.