ModbusTool icon indicating copy to clipboard operation
ModbusTool copied to clipboard

Will RTU over TCP be included?

Open HerrPausL opened this issue 3 years ago • 5 comments

Hello, is there any Plan to include RTU over TCP? See: https://www.simplymodbus.ca/TCP.htm Or https://github.com/stephane/libmodbus/pull/445

Best Regards, Bernd

HerrPausL avatar Jan 31 '22 09:01 HerrPausL

I just came here intending to log this bug. I use ethernet serial servers, so I need RTU over TCP, which isn't an option here it seems...?

TurkeyMan avatar Apr 05 '24 04:04 TurkeyMan

Hi, please give me a little bit time to check my source - i was abel to use RTU over TCP :-)

HerrPausL avatar Apr 05 '24 10:04 HerrPausL

This is my code which is working fine :-)

      private void btnConnect_Click(object sender, EventArgs e)
        {
            if (radioButtonRTU.Checked)
            {
                //_uart = new SerialPort(PortName, Baud, Parity, DataBits, StopBits);
                _uart = new SerialPort(PortName, 115200, Parity.None, 8, StopBits.One);
                _uart.Open();
                _portClient = _uart.GetClient();
                _driver = new ModbusClient(new ModbusRtuCodec()) { Address = SlaveId };
                _driver.OutgoingData += DriverOutgoingData;
                _driver.IncommingData += DriverIncommingData;
            }
            if (radioButtonRTUTCP.Checked)
            {
                try
                {
                    _socket = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp);
                    _socket.SetSocketOption(SocketOptionLevel.Tcp, SocketOptionName.NoDelay, true);
                    _socket.SendTimeout = 2000;
                    _socket.ReceiveTimeout = 2000;
                    _socket.Connect(new IPEndPoint(IPAddress, 502));
                    _portClient = _socket.GetClient();
                    _driver = new ModbusClient(new ModbusRtuCodec()) { Address = SlaveId };
                    _driver.OutgoingData += DriverOutgoingData;
                    _driver.IncommingData += DriverIncommingData;
                    AppendLog(String.Format("Connected using RTUoverTCP to {0}", _socket.RemoteEndPoint));
                    ConnectionState = 1;
                }
                catch (Exception ex)
                {
                    ConnectionState = 0;
                    AppendLog(ex.ToString());
                }
            }

            if (ConnectionState > 0)
            {
                btnConnect.Enabled = false;
                btnDisconnect.Enabled = true;

                ReadCoil();
                ReadInput();
            }
        }

HerrPausL avatar Apr 05 '24 13:04 HerrPausL

Maybe make a PR and get it in the next release?

TurkeyMan avatar Apr 06 '24 00:04 TurkeyMan

@HerrPausL Ran over the same problem. Any chance you submit this as a PR, as suggested by @TurkeyMan?

georgekue avatar Dec 29 '24 15:12 georgekue