MbusSlaveServeraddDataTable Method |
Associates a protocol object with a Data Provider and a
Modbus slave ID.
Namespace:
FieldTalk.Modbus.Slave
Assembly:
FieldTalk.Modbus.Slave (in FieldTalk.Modbus.Slave.dll) Version: 2.11.0-eval+eb1ecbe71c969eff5d7c05d58da16dade0474678
Syntaxpublic int addDataTable(
int slaveAddr,
MbusDataTableInterface dataTable
)
Public Function addDataTable (
slaveAddr As Integer,
dataTable As MbusDataTableInterface
) As Integer
public:
int addDataTable(
int slaveAddr,
MbusDataTableInterface^ dataTable
)
Parameters
- slaveAddr
- Type: SystemInt32
Modbus slave address for server to listen
on (-1 - 255). 0 is regarded as a valid value for a
MODBUS/TCP server address. A value of -1 means the server
disregards the slave address and listens to all slave
addresses. 0 or -1 is only valid for MODBUS/TCP! - dataTable
- Type: FieldTalk.Modbus.SlaveMbusDataTableInterface
Reference to a Modbus data table. Must
be a Data Provider object derived from the
MbusDataTableInterface class. The Data Provider is the
interface between your application data and the Modbus network.
Return Value
Type:
Int32 BusProtocolErrors.FTALK_SUCCESS on success or error code.
See
BusProtocolErrors for possible error codes.
See Also