Advice for Modbus Connection

R

Thread Starter

raimoretku

Hi!

I'm a trainee in a trouble and i need your advice.

I have a task to integrate a bus to another modbus. Is connection like this possible? Connection which is already used is 2-wire RS-458:<pre>
SLAVE1---SLAVE2---(SPLITTER/REPEATER/HUB???)--- SLAVE3---MASTER1(HMI)
xxxxxxxxxxxxxxxxxxxxxxxxxxx |
xxxxxxxxxxxxxxxxxxxxxxxxxxx |-----MASTER2 (WHICH ONLY READS SLAVE1/2)</pre>

I hope this isn't too stupid question.
 
No, connection like that is not possible, unless the device labeled splitter/repeater/hub is a specialized, custom programmed device designed to control the 485 bus traffic. The published Rule is that Modbus RTU over RS-485 can have one and only one master.

Without a specialized bus controller, the messages from different masters and/or the slaves will collide with one another on the 485 bus so the messages will not get through and the system live in comm error land and nothing will communicate with anything else.

One approach is if Master 2 can also be a slave, which I'll call Master2/slave. Then Master 1 can communicate (read data from) with slave 1 and slave 2 and write any needed data to master2/slave.

Or vice versa, because HMI can frequently be a Modbus slave, too, where Master 2 communicates to all three slave and writes whatever data master1/slave/HMI needs.
 
We have a product that will allow for up to 3 modbus masters using serial or 2 serial masters and Modbus TCP.

http://www.miille.com/366-10p-xyz.htm

The messages are processed in the order they are received buffered and sent or timed out depending on slave response. For your application the part number would be 366-103-222.
 
Top