174 lines
5.5 KiB
C#
174 lines
5.5 KiB
C#
using System;
|
|
using System.IO.Ports;
|
|
using System.Runtime;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Windows.Forms;
|
|
using System.Threading;
|
|
|
|
namespace Gidrolock_Modbus_Scanner
|
|
{
|
|
public static class Modbus
|
|
{
|
|
#region Build Message
|
|
public static byte[] BuildMessage(byte modbusID, byte functionCode, ushort address, ushort length, ref byte[] message)
|
|
{
|
|
//Array to receive CRC bytes:
|
|
byte[] CRC = new byte[2];
|
|
|
|
message[0] = modbusID;
|
|
message[1] = functionCode;
|
|
message[2] = (byte)(address >> 8);
|
|
message[3] = (byte)address;
|
|
message[4] = (byte)(length >> 8);
|
|
message[5] = (byte)length;
|
|
|
|
GetCRC(message, ref CRC);
|
|
message[message.Length - 2] = CRC[0];
|
|
message[message.Length - 1] = CRC[1];
|
|
string msg = ByteArrayToString(message);
|
|
//Console.WriteLine("Message: " + msg);
|
|
return message;
|
|
}
|
|
#endregion
|
|
|
|
#region Read Functions
|
|
public static async Task<bool> ReadRegAsync(SerialPort port, byte slaveID, FunctionCode functionCode, ushort address, ushort length)
|
|
{
|
|
//Ensure port is open:
|
|
if (port.IsOpen)
|
|
{
|
|
//Clear in/out buffers:
|
|
port.DiscardOutBuffer();
|
|
port.DiscardInBuffer();
|
|
|
|
//Read functions are always 8 bytes long
|
|
byte[] message = new byte[8];
|
|
|
|
//Build outgoing modbus message:
|
|
BuildMessage(slaveID, (byte)(1 + (int)functionCode), address, length, ref message);
|
|
|
|
//Send modbus message to Serial Port:
|
|
try
|
|
{
|
|
await Task.Run(() => { port.Write(message, 0, message.Length); });
|
|
return true;
|
|
}
|
|
catch (Exception err)
|
|
{
|
|
MessageBox.Show(err.Message);
|
|
port.Close();
|
|
return false;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
MessageBox.Show("Порт не открыт");
|
|
return false;
|
|
}
|
|
|
|
}
|
|
#endregion
|
|
|
|
#region Write Single Coil/Register
|
|
public static async Task<bool> WriteSingle(SerialPort port, FunctionCode functionCode, byte address, ushort start, uint value)
|
|
{
|
|
MessageBox.Show("Not implemented");
|
|
return false;
|
|
/*
|
|
if (port.IsOpen)
|
|
{
|
|
//Clear in/out buffers:
|
|
port.DiscardOutBuffer();
|
|
port.DiscardInBuffer();
|
|
}
|
|
else
|
|
{
|
|
MessageBox.Show("Порт не открыт");
|
|
return false;
|
|
}
|
|
*/
|
|
}
|
|
#endregion
|
|
public static bool ParseResponse(byte[] res, ref string verbose)
|
|
{
|
|
try
|
|
{
|
|
int dataLength = (int)res[2];
|
|
if (res.Length < dataLength + 4)
|
|
{
|
|
verbose = "Сообщение устройства не соответствует ожидаемой длине!";
|
|
return false;
|
|
}
|
|
|
|
//TODO: Check CRC
|
|
return true;
|
|
}
|
|
catch
|
|
{
|
|
verbose = "Сообщение устройства не соответствует ожидаемой длине!";
|
|
return false;
|
|
}
|
|
|
|
}
|
|
|
|
public static string ByteArrayToString(byte[] bytes)
|
|
{
|
|
int length = bytes.Length - 1;
|
|
// snip off the empty bytes at the end
|
|
for (int i = length; i >= 0; i--)
|
|
{
|
|
if (bytes[i] != 0)
|
|
{
|
|
length = i + 1;
|
|
break;
|
|
}
|
|
}
|
|
|
|
byte[] res = new byte[length];
|
|
for (int i = 0; i < length; i++)
|
|
res[i] = bytes[i];
|
|
|
|
string dataString = BitConverter.ToString(res);
|
|
string result = "";
|
|
for (int i = 0; i < dataString.Length; i++)
|
|
{
|
|
if (dataString[i] == '-')
|
|
result += " ";
|
|
else result += dataString[i];
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
#region CRC Computation
|
|
static void GetCRC(byte[] message, ref byte[] CRC)
|
|
{
|
|
//Function expects a modbus message of any length as well as a 2 byte CRC array in which to
|
|
//return the CRC values:
|
|
|
|
ushort CRCFull = 0xFFFF;
|
|
byte CRCHigh = 0xFF, CRCLow = 0xFF;
|
|
char CRCLSB;
|
|
|
|
for (int i = 0; i < (message.Length) - 2; i++)
|
|
{
|
|
CRCFull = (ushort)(CRCFull ^ message[i]);
|
|
|
|
for (int j = 0; j < 8; j++)
|
|
{
|
|
CRCLSB = (char)(CRCFull & 0x0001);
|
|
CRCFull = (ushort)((CRCFull >> 1) & 0x7FFF);
|
|
|
|
if (CRCLSB == 1)
|
|
CRCFull = (ushort)(CRCFull ^ 0xA001);
|
|
}
|
|
}
|
|
CRC[1] = CRCHigh = (byte)((CRCFull >> 8) & 0xFF);
|
|
CRC[0] = CRCLow = (byte)(CRCFull & 0xFF);
|
|
}
|
|
#endregion
|
|
}
|
|
} |