Page Tree
Other Releases
The Modbus driver implements communication with PLC and IO devices compatibles with the Modbus Open Standard protocol. It operates as a Master on TCP/IP or serial networks. The communications blocks are dynamically created according to the pooling cycle defined on the AccessType for each Device Point.
Communication Driver Name: Modbus
Implementation DLL: T.ProtocolDriver.Modbus.dll
Protocol: MODBUS RTU, ASCII, and TCP
Interface: TCP/IP and Serial
PLC types supported: Any PLC compatible with Modbus
Communication block size: User configurable. Default is 250
Protocol Options: Message Format (ASCII, RTU, or RTU TCP). Use block write command (0x0F or 0x10) or single write command (0x05 or 0x06) for single writings
Multi-threading: User configurable. Default is five threads to each network node
Max number of nodes: User defined
PC Hardware requirements: Standard PC Ethernet interface board, RS485, or RS232 port
Supported Operands:
Operand | Read | Write | Data Type | Address Size |
---|---|---|---|---|
0 – Coils | Yes | Yes | Bit | 1 bit |
1 – Input Status | Yes | Bit | 1 bit | |
3 – Input Registers | Yes | Word | 2 bytes | |
4 – Holding Registers | Yes | Yes | Word | 2 bytes |
%Q – Coils | Yes | Yes | Bit | 1 bit |
%M– Coils | Yes | Yes | Bit | 1 bit |
%I – Input Status | Yes | Bit | 1 bit | |
%IW– Input Registers | Yes | Word | 2 bytes | |
%MW – Holding Registers | Yes | Yes | Word | 2 bytes |
%QW – Holding Registers | Yes | Yes | Word | 2 bytes |
BlockSize: Defines the maximum amount of items per group. The default value is 250
If the communication points are configured in sequence and the BlockSize equals 250, the driver can create internal groups with 125 Registers or 2000 Coils
Encoding: Determines how information will be packed into the message fields and decoded. The options are:
SingleWrite: Indicates the behavior of the driver for writings with only one item:
Offset address: Indicates the driver is a zero based address
Serial and MultiSerial channels:
TCP/IP channels:
SlaveId: Set this field with the address of the slave device in the Modbus Network. They can be addressed from 1 to 247 for serial nodes or 0 to 255 for TCP/IP nodes. 0 is used for the broadcast
Serial channels:
Station syntax: <SlaveId>
Ex: 1
MultiSerial channels:
Station syntax: <Com Port>;<SlaveId>
Where:
Ex: com1;1
TCP/IP channels:
Station syntax: <IP address>;<Port number>;<SlaveId>
Where:
Ex: 192.168.1.101 ; 502 ; 1
The syntax for the Modbus communication points is: <Operand><Address>
Where:
For more information about the valid operands, see Supported Operands.
E.g.: 400001 (Operand = Holding Register, Address = 1)
The status of the driver's execution can be observed through the diagnostic tools, which are:
• Trace window
• Property Watch
• Module Information
The above tools indicate if the operations have succeeded or have failed. A status of 0 (zero) means communication is successful. Negative values indicate internal driver errors, and positive values indicate protocol error codes.
Error | Name | Description |
---|---|---|
1 | ILLEGAL FUNCTION | The function code received in the query is not allowable |
2 | ILLEGAL DATA ADDRESS | The data address received in the query is not allowable |
3 | ILLEGAL DATA VALUE | A value contained in the query data field is not allowable |
4 | SLAVE DEVICE FAILURE | Error while attempting to perform the requested action |
5 | ACKNOWLEDGE | Request accepted, but a long duration of time will be required |
6 | SLAVE DEVICE BUSY | The slave is engaged in a long–duration program command |
7 | NEGATIVE ACKNOWLEDGE | Cannot perform the program function received in the query |
8 | MEMORY PARITY ERROR | Parity error in the extended memory |