C# 串口通信(modbus),自动重连

(1)C#串口通信的例子,需要在线程里面执行。

private void Com2Ups40()
        {
            try
            {
                Logger.Info("执行函数Com2Ups40()------开始!!!");

                //UpsMaiDiSi = new SerialPortManager();
                serialPort = new SerialPort(_nameValueCollection["UPSMaiDiSi"], int.Parse(_nameValueCollection["UPSMaiDiSi_Rate"]), Parity.None, int.Parse(_nameValueCollection["UPSMaiDiSi_DataBit"]));

                Logger.Debug("MainWinViewModel()->Com2Ups40()->" + "00000000000000000000");
                serialPort.ReadTimeout = 2000;

                if (!serialPort.IsOpen)
                {
                    serialPort.Open();
                }

                Logger.Debug("MainWinViewModel()->Com2Ups40()->" + "444444444444444444444444444444");
                master40 = ModbusSerialMaster.CreateRtu(serialPort);

                //参数(分别为站号,起始地址,长度)
                byte slaveAddress = 1;
                ushort startAddress = 0;
                ushort numberOfPoints = 70;

                while (true)
                {

                    ushort[] registerBuffer = null;
                    try
                    {
                        registerBuffer = master40.ReadInputRegisters(slaveAddress, startAddress, numberOfPoints);
                    }
                    catch (Exception ex)
                    {
                        Logger.Debug("MainWinViewModel()->Com2Ups40()->ReadInputRegisters()" + ex);
                        continue;
                    }


                    //解析
                    for (int i = 0; i < registerBuffer.Length; i++)
                    {
                        if(registerBuffer[20].ToString().Length > 1)
                            srES = (registerBuffer[20].ToString()).Substring(0, (registerBuffer[20].ToString()).Length - 1);

                        if (registerBuffer[24].ToString().Length > 1)
                            srST = (registerBuffer[24].ToString()).Substring(0, (registerBuffer[24].ToString()).Length - 1);

                        if (registerBuffer[16].ToString().Length > 1)
                            srTR = (registerBuffer[16].ToString()).Substring(0, (registerBuffer[16].ToString()).Length - 1);

                        if (registerBuffer[34].ToString().Length > 1)
                            scE  = (registerBuffer[34].ToString()).Substring(0, (registerBuffer[34].ToString()).Length - 1);

                        if (registerBuffer[38].ToString().Length > 1)
                            scS = (registerBuffer[38].ToString()).Substring(0, (registerBuffer[38].ToString()).Length - 1);

                        if (registerBuffer[30].ToString().Length > 1)
                            scT = (registerBuffer[30].ToString()).Substring(0, (registerBuffer[30].ToString()).Length - 1);

                    }
   
                    Thread.Sleep(5000);
                }

 
            }
            catch (Exception ex)
            {
                Logger.Debug("MainWinViewModel()->Com2Ups40()->" + ex);
            }
        }

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值