48 lines
1.6 KiB
C#
48 lines
1.6 KiB
C#
using System.Configuration;
|
|
|
|
namespace Modbus.Net.Modbus
|
|
{
|
|
/// <summary>
|
|
/// Modbus/Rtu协议连接器Tcp透传
|
|
/// </summary>
|
|
public class ModbusRtuInTcpProtocolLinker : TcpProtocolLinker
|
|
{
|
|
/// <summary>
|
|
/// 构造函数
|
|
/// </summary>
|
|
/// <param name="ip">IP地址</param>
|
|
public ModbusRtuInTcpProtocolLinker(string ip)
|
|
: base(ip, int.Parse(ConfigurationManager.AppSettings["ModbusPort"] ?? "502"), false)
|
|
{
|
|
}
|
|
|
|
/// <summary>
|
|
/// 构造函数
|
|
/// </summary>
|
|
/// <param name="ip">IP地址</param>
|
|
/// <param name="port">端口号</param>
|
|
public ModbusRtuInTcpProtocolLinker(string ip, int port)
|
|
: base(ip, port)
|
|
{
|
|
((BaseConnector)BaseConnector).AddController(new FifoController(int.Parse(ConfigurationManager.AppSettings["FetchSleepTime"] ?? "0")));
|
|
}
|
|
|
|
/// <summary>
|
|
/// 校验返回数据
|
|
/// </summary>
|
|
/// <param name="content">设备返回的数据</param>
|
|
/// <returns>数据是否正确</returns>
|
|
public override bool? CheckRight(byte[] content)
|
|
{
|
|
//ProtocolLinker的CheckRight不会返回null
|
|
if (base.CheckRight(content) != true) return false;
|
|
//CRC校验失败
|
|
if (!Crc16.GetInstance().CrcEfficacy(content))
|
|
throw new ModbusProtocolErrorException(501);
|
|
//Modbus协议错误
|
|
if (content[1] > 127)
|
|
throw new ModbusProtocolErrorException(content[2]);
|
|
return true;
|
|
}
|
|
}
|
|
} |