123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Net;
- using System.Text;
- using System.Threading.Tasks;
- using MECF.Framework.Common.Properties;
- namespace MECF.Framework.Common.Utilities
- {
- public class ModbusUtility
- {
- private static readonly ushort[] CrcTable =
- {
- 0X0000, 0XC0C1, 0XC181, 0X0140, 0XC301, 0X03C0, 0X0280, 0XC241,
- 0XC601, 0X06C0, 0X0780, 0XC741, 0X0500, 0XC5C1, 0XC481, 0X0440,
- 0XCC01, 0X0CC0, 0X0D80, 0XCD41, 0X0F00, 0XCFC1, 0XCE81, 0X0E40,
- 0X0A00, 0XCAC1, 0XCB81, 0X0B40, 0XC901, 0X09C0, 0X0880, 0XC841,
- 0XD801, 0X18C0, 0X1980, 0XD941, 0X1B00, 0XDBC1, 0XDA81, 0X1A40,
- 0X1E00, 0XDEC1, 0XDF81, 0X1F40, 0XDD01, 0X1DC0, 0X1C80, 0XDC41,
- 0X1400, 0XD4C1, 0XD581, 0X1540, 0XD701, 0X17C0, 0X1680, 0XD641,
- 0XD201, 0X8C0, 0X1380, 0XD341, 0X1100, 0XD1C1, 0XD081, 0X1040,
- 0XF001, 0X30C0, 0X3180, 0XF141, 0X3300, 0XF3C1, 0XF281, 0X3240,
- 0X3600, 0XF6C1, 0XF781, 0X3740, 0XF501, 0X35C0, 0X3480, 0XF441,
- 0X3C00, 0XFCC1, 0XFD81, 0X3D40, 0XFF01, 0X3FC0, 0X3E80, 0XFE41,
- 0XFA01, 0X3AC0, 0X3B80, 0XFB41, 0X3900, 0XF9C1, 0XF881, 0X3840,
- 0X2800, 0XE8C1, 0XE981, 0X2940, 0XEB01, 0X2BC0, 0X2A80, 0XEA41,
- 0XEE01, 0X2EC0, 0X2F80, 0XEF41, 0X2D00, 0XEDC1, 0XEC81, 0X2C40,
- 0XE401, 0X24C0, 0X2580, 0XE541, 0X2700, 0XE7C1, 0XE681, 0X2640,
- 0X2200, 0XE2C1, 0XE381, 0X2340, 0XE101, 0X21C0, 0X2080, 0XE041,
- 0XA001, 0X60C0, 0X6180, 0XA141, 0X6300, 0XA3C1, 0XA281, 0X6240,
- 0X6600, 0XA6C1, 0XA781, 0X6740, 0XA501, 0X65C0, 0X6480, 0XA441,
- 0X6C00, 0XACC1, 0XAD81, 0X6D40, 0XAF01, 0X6FC0, 0X6E80, 0XAE41,
- 0XAA01, 0X6AC0, 0X6B80, 0XAB41, 0X6900, 0XA9C1, 0XA881, 0X6840,
- 0X7800, 0XB8C1, 0XB981, 0X7940, 0XBB01, 0X7BC0, 0X7A80, 0XBA41,
- 0XBE01, 0X7EC0, 0X7F80, 0XBF41, 0X7D00, 0XBDC1, 0XBC81, 0X7C40,
- 0XB401, 0X74C0, 0X7580, 0XB541, 0X7700, 0XB7C1, 0XB681, 0X7640,
- 0X7200, 0XB2C1, 0XB381, 0X7340, 0XB101, 0X71C0, 0X7080, 0XB041,
- 0X5000, 0X90C1, 0X9181, 0X5140, 0X9301, 0X53C0, 0X5280, 0X9241,
- 0X9601, 0X56C0, 0X5780, 0X9741, 0X5500, 0X95C1, 0X9481, 0X5440,
- 0X9C01, 0X5CC0, 0X5D80, 0X9D41, 0X5F00, 0X9FC1, 0X9E81, 0X5E40,
- 0X5A00, 0X9AC1, 0X9B81, 0X5B40, 0X9901, 0X59C0, 0X5880, 0X9841,
- 0X8801, 0X48C0, 0X4980, 0X8941, 0X4B00, 0X8BC1, 0X8A81, 0X4A40,
- 0X4E00, 0X8EC1, 0X8F81, 0X4F40, 0X8D01, 0X4DC0, 0X4C80, 0X8C41,
- 0X4400, 0X84C1, 0X8581, 0X4540, 0X8701, 0X47C0, 0X4680, 0X8641,
- 0X8201, 0X42C0, 0X4380, 0X8341, 0X4100, 0X81C1, 0X8081, 0X4040
- };
- /// <summary>
- /// Converts four UInt16 values into a IEEE 64 floating point format.
- /// </summary>
- /// <param name="b3">Highest-order ushort value.</param>
- /// <param name="b2">Second-to-highest-order ushort value.</param>
- /// <param name="b1">Second-to-lowest-order ushort value.</param>
- /// <param name="b0">Lowest-order ushort value.</param>
- /// <returns>IEEE 64 floating point value.</returns>
- public static double GetDouble(ushort b3, ushort b2, ushort b1, ushort b0)
- {
- byte[] value = BitConverter.GetBytes(b0)
- .Concat(BitConverter.GetBytes(b1))
- .Concat(BitConverter.GetBytes(b2))
- .Concat(BitConverter.GetBytes(b3))
- .ToArray();
- return BitConverter.ToDouble(value, 0);
- }
- /// <summary>
- /// Converts two UInt16 values into a IEEE 32 floating point format.
- /// </summary>
- /// <param name="highOrderValue">High order ushort value.</param>
- /// <param name="lowOrderValue">Low order ushort value.</param>
- /// <returns>IEEE 32 floating point value.</returns>
- public static float GetSingle(ushort highOrderValue, ushort lowOrderValue)
- {
- byte[] value = BitConverter.GetBytes(lowOrderValue)
- .Concat(BitConverter.GetBytes(highOrderValue))
- .ToArray();
- return BitConverter.ToSingle(value, 0);
- }
- /// <summary>
- /// Converts two UInt16 values into a UInt32.
- /// </summary>
- public static uint GetUInt32(ushort highOrderValue, ushort lowOrderValue)
- {
- byte[] value = BitConverter.GetBytes(lowOrderValue)
- .Concat(BitConverter.GetBytes(highOrderValue))
- .ToArray();
- return BitConverter.ToUInt32(value, 0);
- }
- /// <summary>
- /// Converts an array of bytes to an ASCII byte array.
- /// </summary>
- /// <param name="numbers">The byte array.</param>
- /// <returns>An array of ASCII byte values.</returns>
- public static byte[] GetAsciiBytes(params byte[] numbers)
- {
- return Encoding.UTF8.GetBytes(numbers.SelectMany(n => n.ToString("X2")).ToArray());
- }
- /// <summary>
- /// Converts an array of UInt16 to an ASCII byte array.
- /// </summary>
- /// <param name="numbers">The ushort array.</param>
- /// <returns>An array of ASCII byte values.</returns>
- public static byte[] GetAsciiBytes(params ushort[] numbers)
- {
- return Encoding.UTF8.GetBytes(numbers.SelectMany(n => n.ToString("X4")).ToArray());
- }
- /// <summary>
- /// Converts a network order byte array to an array of UInt16 values in host order.
- /// </summary>
- /// <param name="networkBytes">The network order byte array.</param>
- /// <returns>The host order ushort array.</returns>
- public static ushort[] NetworkBytesToHostUInt16(byte[] networkBytes)
- {
- if (networkBytes == null)
- {
- throw new ArgumentNullException(nameof(networkBytes));
- }
- if (networkBytes.Length % 2 != 0)
- {
- throw new FormatException("NetworkBytesNotEven");
- }
- ushort[] result = new ushort[networkBytes.Length / 2];
- for (int i = 0; i < result.Length; i++)
- {
- result[i] = (ushort)IPAddress.NetworkToHostOrder(BitConverter.ToInt16(networkBytes, i * 2));
- }
- return result;
- }
- /// <summary>
- /// Converts a hex string to a byte array.
- /// </summary>
- /// <param name="hex">The hex string.</param>
- /// <returns>Array of bytes.</returns>
- public static byte[] HexToBytes(string hex)
- {
- if (hex == null)
- {
- throw new ArgumentNullException(nameof(hex));
- }
- if (hex.Length % 2 != 0)
- {
- throw new FormatException("HexCharacterCountNotEven");
- }
- byte[] bytes = new byte[hex.Length / 2];
- for (int i = 0; i < bytes.Length; i++)
- {
- bytes[i] = Convert.ToByte(hex.Substring(i * 2, 2), 16);
- }
- return bytes;
- }
- /// <summary>
- /// Calculate Longitudinal Redundancy Check.
- /// </summary>
- /// <param name="data">The data used in LRC.</param>
- /// <returns>LRC value.</returns>
- public static byte CalculateLrc(byte[] data)
- {
- if (data == null)
- {
- throw new ArgumentNullException(nameof(data));
- }
- byte lrc = 0;
- foreach (byte b in data)
- {
- lrc += b;
- }
- lrc = (byte)((lrc ^ 0xFF) + 1);
- return lrc;
- }
- /// <summary>
- /// Calculate Cyclical Redundancy Check.
- /// </summary>
- /// <param name="data">The data used in CRC.</param>
- /// <returns>CRC value.</returns>
- public static byte[] CalculateCrc(byte[] data)
- {
- if (data == null)
- {
- throw new ArgumentNullException(nameof(data));
- }
- ushort crc = ushort.MaxValue;
- foreach (byte b in data)
- {
- byte tableIndex = (byte)(crc ^ b);
- crc >>= 8;
- crc ^= CrcTable[tableIndex];
- }
- return BitConverter.GetBytes(crc);
- }
- }
- public static class Crc16
- {
- const ushort polynomial = 0xA001;
- static readonly ushort[] table = new ushort[256];
- public static ushort ComputeChecksum(byte[] bytes)
- {
- ushort crc = 0;
- for (int i = 0; i < bytes.Length; ++i)
- {
- byte index = (byte)(crc ^ bytes[i]);
- crc = (ushort)((crc >> 8) ^ table[index]);
- }
- return crc;
- }
- static Crc16()
- {
- ushort value;
- ushort temp;
- for (ushort i = 0; i < table.Length; ++i)
- {
- value = 0;
- temp = i;
- for (byte j = 0; j < 8; ++j)
- {
- if (((value ^ temp) & 0x0001) != 0)
- {
- value = (ushort)((value >> 1) ^ polynomial);
- }
- else
- {
- value >>= 1;
- }
- temp >>= 1;
- }
- table[i] = value;
- }
- }
- private static ushort Crc16Ccitt(byte[] bytes)
- {
- const ushort poly = 4129;
- ushort[] table = new ushort[256];
- ushort initialValue = 0xffff;
- ushort temp, a;
- ushort crc = initialValue;
- for (int i = 0; i < table.Length; ++i)
- {
- temp = 0;
- a = (ushort)(i << 8);
- for (int j = 0; j < 8; ++j)
- {
- if (((temp ^ a) & 0x8000) != 0)
- temp = (ushort)((temp << 1) ^ poly);
- else
- temp <<= 1;
- a <<= 1;
- }
- table[i] = temp;
- }
- for (int i = 0; i < bytes.Length; ++i)
- {
- crc = (ushort)((crc << 8) ^ table[((crc >> 8) ^ (0xff & bytes[i]))]);
- }
- return crc;
- }
- private static byte[] s_CRCHi = {
- 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0, 0x80, 0x41, 0x01, 0xC0,
- 0x80, 0x41, 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0, 0x80, 0x41,
- 0x00, 0xC1, 0x81, 0x40, 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0,
- 0x80, 0x41, 0x01, 0xC0, 0x80, 0x41, 0x00, 0xC1, 0x81, 0x40,
- 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0, 0x80, 0x41, 0x00, 0xC1,
- 0x81, 0x40, 0x01, 0xC0, 0x80, 0x41, 0x01, 0xC0, 0x80, 0x41,
- 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0, 0x80, 0x41, 0x00, 0xC1,
- 0x81, 0x40, 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0, 0x80, 0x41,
- 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0, 0x80, 0x41, 0x01, 0xC0,
- 0x80, 0x41, 0x00, 0xC1, 0x81, 0x40, 0x00, 0xC1, 0x81, 0x40,
- 0x01, 0xC0, 0x80, 0x41, 0x01, 0xC0, 0x80, 0x41, 0x00, 0xC1,
- 0x81, 0x40, 0x01, 0xC0, 0x80, 0x41, 0x00, 0xC1, 0x81, 0x40,
- 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0, 0x80, 0x41, 0x01, 0xC0,
- 0x80, 0x41, 0x00, 0xC1, 0x81, 0x40, 0x00, 0xC1, 0x81, 0x40,
- 0x01, 0xC0, 0x80, 0x41, 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0,
- 0x80, 0x41, 0x01, 0xC0, 0x80, 0x41, 0x00, 0xC1, 0x81, 0x40,
- 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0, 0x80, 0x41, 0x01, 0xC0,
- 0x80, 0x41, 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0, 0x80, 0x41,
- 0x00, 0xC1, 0x81, 0x40, 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0,
- 0x80, 0x41, 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0, 0x80, 0x41,
- 0x01, 0xC0, 0x80, 0x41, 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0,
- 0x80, 0x41, 0x00, 0xC1, 0x81, 0x40, 0x00, 0xC1, 0x81, 0x40,
- 0x01, 0xC0, 0x80, 0x41, 0x01, 0xC0, 0x80, 0x41, 0x00, 0xC1,
- 0x81, 0x40, 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0, 0x80, 0x41,
- 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0, 0x80, 0x41, 0x01, 0xC0,
- 0x80, 0x41, 0x00, 0xC1, 0x81, 0x40
- };
- private static byte[] s_CRCLo = {
- 0x00, 0xC0, 0xC1, 0x01, 0xC3, 0x03, 0x02, 0xC2, 0xC6, 0x06,
- 0x07, 0xC7, 0x05, 0xC5, 0xC4, 0x04, 0xCC, 0x0C, 0x0D, 0xCD,
- 0x0F, 0xCF, 0xCE, 0x0E, 0x0A, 0xCA, 0xCB, 0x0B, 0xC9, 0x09,
- 0x08, 0xC8, 0xD8, 0x18, 0x19, 0xD9, 0x1B, 0xDB, 0xDA, 0x1A,
- 0x1E, 0xDE, 0xDF, 0x1F, 0xDD, 0x1D, 0x1C, 0xDC, 0x14, 0xD4,
- 0xD5, 0x15, 0xD7, 0x17, 0x16, 0xD6, 0xD2, 0X8, 0x13, 0xD3,
- 0x11, 0xD1, 0xD0, 0x10, 0xF0, 0x30, 0x31, 0xF1, 0x33, 0xF3,
- 0xF2, 0x32, 0x36, 0xF6, 0xF7, 0x37, 0xF5, 0x35, 0x34, 0xF4,
- 0x3C, 0xFC, 0xFD, 0x3D, 0xFF, 0x3F, 0x3E, 0xFE, 0xFA, 0x3A,
- 0x3B, 0xFB, 0x39, 0xF9, 0xF8, 0x38, 0x28, 0xE8, 0xE9, 0x29,
- 0xEB, 0x2B, 0x2A, 0xEA, 0xEE, 0x2E, 0x2F, 0xEF, 0x2D, 0xED,
- 0xEC, 0x2C, 0xE4, 0x24, 0x25, 0xE5, 0x27, 0xE7, 0xE6, 0x26,
- 0x22, 0xE2, 0xE3, 0x23, 0xE1, 0x21, 0x20, 0xE0, 0xA0, 0x60,
- 0x61, 0xA1, 0x63, 0xA3, 0xA2, 0x62, 0x66, 0xA6, 0xA7, 0x67,
- 0xA5, 0x65, 0x64, 0xA4, 0x6C, 0xAC, 0xAD, 0x6D, 0xAF, 0x6F,
- 0x6E, 0xAE, 0xAA, 0x6A, 0x6B, 0xAB, 0x69, 0xA9, 0xA8, 0x68,
- 0x78, 0xB8, 0xB9, 0x79, 0xBB, 0x7B, 0x7A, 0xBA, 0xBE, 0x7E,
- 0x7F, 0xBF, 0x7D, 0xBD, 0xBC, 0x7C, 0xB4, 0x74, 0x75, 0xB5,
- 0x77, 0xB7, 0xB6, 0x76, 0x72, 0xB2, 0xB3, 0x73, 0xB1, 0x71,
- 0x70, 0xB0, 0x50, 0x90, 0x91, 0x51, 0x93, 0x53, 0x52, 0x92,
- 0x96, 0x56, 0x57, 0x97, 0x55, 0x95, 0x94, 0x54, 0x9C, 0x5C,
- 0x5D, 0x9D, 0x5F, 0x9F, 0x9E, 0x5E, 0x5A, 0x9A, 0x9B, 0x5B,
- 0x99, 0x59, 0x58, 0x98, 0x88, 0x48, 0x49, 0x89, 0x4B, 0x8B,
- 0x8A, 0x4A, 0x4E, 0x8E, 0x8F, 0x4F, 0x8D, 0x4D, 0x4C, 0x8C,
- 0x44, 0x84, 0x85, 0x45, 0x87, 0x47, 0x46, 0x86, 0x82, 0x42,
- 0x43, 0x83, 0x41, 0x81, 0x80, 0x40
- };
- public static ushort CRC16_Modbus(byte[] _pBuf)
- {
- byte ucCRCHi = 0xFF;/* 高CRC字节初始化 */
- byte ucCRCLo = 0xFF; /* 低CRC 字节初始化 */
- UInt16 usIndex; /* CRC循环中的索引 */
- int _usLen = _pBuf.Length;
- for(int i=0;i<_pBuf.Length;i++)
- {
- usIndex = (byte)(ucCRCHi ^ _pBuf[i]); /* 计算CRC */
- ucCRCHi = (byte)(ucCRCLo ^ s_CRCHi[usIndex]);
- ucCRCLo = s_CRCLo[usIndex];
- }
- return (ushort)(ucCRCHi << 8 | ucCRCLo);
- }
- }
- }
|