Crc16.cs 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Net;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. using MECF.Framework.Common.Properties;
  8. namespace MECF.Framework.Common.Utilities
  9. {
  10. public class ModbusUtility
  11. {
  12. private static readonly ushort[] CrcTable =
  13. {
  14. 0X0000, 0XC0C1, 0XC181, 0X0140, 0XC301, 0X03C0, 0X0280, 0XC241,
  15. 0XC601, 0X06C0, 0X0780, 0XC741, 0X0500, 0XC5C1, 0XC481, 0X0440,
  16. 0XCC01, 0X0CC0, 0X0D80, 0XCD41, 0X0F00, 0XCFC1, 0XCE81, 0X0E40,
  17. 0X0A00, 0XCAC1, 0XCB81, 0X0B40, 0XC901, 0X09C0, 0X0880, 0XC841,
  18. 0XD801, 0X18C0, 0X1980, 0XD941, 0X1B00, 0XDBC1, 0XDA81, 0X1A40,
  19. 0X1E00, 0XDEC1, 0XDF81, 0X1F40, 0XDD01, 0X1DC0, 0X1C80, 0XDC41,
  20. 0X1400, 0XD4C1, 0XD581, 0X1540, 0XD701, 0X17C0, 0X1680, 0XD641,
  21. 0XD201, 0X8C0, 0X1380, 0XD341, 0X1100, 0XD1C1, 0XD081, 0X1040,
  22. 0XF001, 0X30C0, 0X3180, 0XF141, 0X3300, 0XF3C1, 0XF281, 0X3240,
  23. 0X3600, 0XF6C1, 0XF781, 0X3740, 0XF501, 0X35C0, 0X3480, 0XF441,
  24. 0X3C00, 0XFCC1, 0XFD81, 0X3D40, 0XFF01, 0X3FC0, 0X3E80, 0XFE41,
  25. 0XFA01, 0X3AC0, 0X3B80, 0XFB41, 0X3900, 0XF9C1, 0XF881, 0X3840,
  26. 0X2800, 0XE8C1, 0XE981, 0X2940, 0XEB01, 0X2BC0, 0X2A80, 0XEA41,
  27. 0XEE01, 0X2EC0, 0X2F80, 0XEF41, 0X2D00, 0XEDC1, 0XEC81, 0X2C40,
  28. 0XE401, 0X24C0, 0X2580, 0XE541, 0X2700, 0XE7C1, 0XE681, 0X2640,
  29. 0X2200, 0XE2C1, 0XE381, 0X2340, 0XE101, 0X21C0, 0X2080, 0XE041,
  30. 0XA001, 0X60C0, 0X6180, 0XA141, 0X6300, 0XA3C1, 0XA281, 0X6240,
  31. 0X6600, 0XA6C1, 0XA781, 0X6740, 0XA501, 0X65C0, 0X6480, 0XA441,
  32. 0X6C00, 0XACC1, 0XAD81, 0X6D40, 0XAF01, 0X6FC0, 0X6E80, 0XAE41,
  33. 0XAA01, 0X6AC0, 0X6B80, 0XAB41, 0X6900, 0XA9C1, 0XA881, 0X6840,
  34. 0X7800, 0XB8C1, 0XB981, 0X7940, 0XBB01, 0X7BC0, 0X7A80, 0XBA41,
  35. 0XBE01, 0X7EC0, 0X7F80, 0XBF41, 0X7D00, 0XBDC1, 0XBC81, 0X7C40,
  36. 0XB401, 0X74C0, 0X7580, 0XB541, 0X7700, 0XB7C1, 0XB681, 0X7640,
  37. 0X7200, 0XB2C1, 0XB381, 0X7340, 0XB101, 0X71C0, 0X7080, 0XB041,
  38. 0X5000, 0X90C1, 0X9181, 0X5140, 0X9301, 0X53C0, 0X5280, 0X9241,
  39. 0X9601, 0X56C0, 0X5780, 0X9741, 0X5500, 0X95C1, 0X9481, 0X5440,
  40. 0X9C01, 0X5CC0, 0X5D80, 0X9D41, 0X5F00, 0X9FC1, 0X9E81, 0X5E40,
  41. 0X5A00, 0X9AC1, 0X9B81, 0X5B40, 0X9901, 0X59C0, 0X5880, 0X9841,
  42. 0X8801, 0X48C0, 0X4980, 0X8941, 0X4B00, 0X8BC1, 0X8A81, 0X4A40,
  43. 0X4E00, 0X8EC1, 0X8F81, 0X4F40, 0X8D01, 0X4DC0, 0X4C80, 0X8C41,
  44. 0X4400, 0X84C1, 0X8581, 0X4540, 0X8701, 0X47C0, 0X4680, 0X8641,
  45. 0X8201, 0X42C0, 0X4380, 0X8341, 0X4100, 0X81C1, 0X8081, 0X4040
  46. };
  47. /// <summary>
  48. /// Converts four UInt16 values into a IEEE 64 floating point format.
  49. /// </summary>
  50. /// <param name="b3">Highest-order ushort value.</param>
  51. /// <param name="b2">Second-to-highest-order ushort value.</param>
  52. /// <param name="b1">Second-to-lowest-order ushort value.</param>
  53. /// <param name="b0">Lowest-order ushort value.</param>
  54. /// <returns>IEEE 64 floating point value.</returns>
  55. public static double GetDouble(ushort b3, ushort b2, ushort b1, ushort b0)
  56. {
  57. byte[] value = BitConverter.GetBytes(b0)
  58. .Concat(BitConverter.GetBytes(b1))
  59. .Concat(BitConverter.GetBytes(b2))
  60. .Concat(BitConverter.GetBytes(b3))
  61. .ToArray();
  62. return BitConverter.ToDouble(value, 0);
  63. }
  64. /// <summary>
  65. /// Converts two UInt16 values into a IEEE 32 floating point format.
  66. /// </summary>
  67. /// <param name="highOrderValue">High order ushort value.</param>
  68. /// <param name="lowOrderValue">Low order ushort value.</param>
  69. /// <returns>IEEE 32 floating point value.</returns>
  70. public static float GetSingle(ushort highOrderValue, ushort lowOrderValue)
  71. {
  72. byte[] value = BitConverter.GetBytes(lowOrderValue)
  73. .Concat(BitConverter.GetBytes(highOrderValue))
  74. .ToArray();
  75. return BitConverter.ToSingle(value, 0);
  76. }
  77. /// <summary>
  78. /// Converts two UInt16 values into a UInt32.
  79. /// </summary>
  80. public static uint GetUInt32(ushort highOrderValue, ushort lowOrderValue)
  81. {
  82. byte[] value = BitConverter.GetBytes(lowOrderValue)
  83. .Concat(BitConverter.GetBytes(highOrderValue))
  84. .ToArray();
  85. return BitConverter.ToUInt32(value, 0);
  86. }
  87. /// <summary>
  88. /// Converts an array of bytes to an ASCII byte array.
  89. /// </summary>
  90. /// <param name="numbers">The byte array.</param>
  91. /// <returns>An array of ASCII byte values.</returns>
  92. public static byte[] GetAsciiBytes(params byte[] numbers)
  93. {
  94. return Encoding.UTF8.GetBytes(numbers.SelectMany(n => n.ToString("X2")).ToArray());
  95. }
  96. /// <summary>
  97. /// Converts an array of UInt16 to an ASCII byte array.
  98. /// </summary>
  99. /// <param name="numbers">The ushort array.</param>
  100. /// <returns>An array of ASCII byte values.</returns>
  101. public static byte[] GetAsciiBytes(params ushort[] numbers)
  102. {
  103. return Encoding.UTF8.GetBytes(numbers.SelectMany(n => n.ToString("X4")).ToArray());
  104. }
  105. /// <summary>
  106. /// Converts a network order byte array to an array of UInt16 values in host order.
  107. /// </summary>
  108. /// <param name="networkBytes">The network order byte array.</param>
  109. /// <returns>The host order ushort array.</returns>
  110. public static ushort[] NetworkBytesToHostUInt16(byte[] networkBytes)
  111. {
  112. if (networkBytes == null)
  113. {
  114. throw new ArgumentNullException(nameof(networkBytes));
  115. }
  116. if (networkBytes.Length % 2 != 0)
  117. {
  118. throw new FormatException("NetworkBytesNotEven");
  119. }
  120. ushort[] result = new ushort[networkBytes.Length / 2];
  121. for (int i = 0; i < result.Length; i++)
  122. {
  123. result[i] = (ushort)IPAddress.NetworkToHostOrder(BitConverter.ToInt16(networkBytes, i * 2));
  124. }
  125. return result;
  126. }
  127. /// <summary>
  128. /// Converts a hex string to a byte array.
  129. /// </summary>
  130. /// <param name="hex">The hex string.</param>
  131. /// <returns>Array of bytes.</returns>
  132. public static byte[] HexToBytes(string hex)
  133. {
  134. if (hex == null)
  135. {
  136. throw new ArgumentNullException(nameof(hex));
  137. }
  138. if (hex.Length % 2 != 0)
  139. {
  140. throw new FormatException("HexCharacterCountNotEven");
  141. }
  142. byte[] bytes = new byte[hex.Length / 2];
  143. for (int i = 0; i < bytes.Length; i++)
  144. {
  145. bytes[i] = Convert.ToByte(hex.Substring(i * 2, 2), 16);
  146. }
  147. return bytes;
  148. }
  149. /// <summary>
  150. /// Calculate Longitudinal Redundancy Check.
  151. /// </summary>
  152. /// <param name="data">The data used in LRC.</param>
  153. /// <returns>LRC value.</returns>
  154. public static byte CalculateLrc(byte[] data)
  155. {
  156. if (data == null)
  157. {
  158. throw new ArgumentNullException(nameof(data));
  159. }
  160. byte lrc = 0;
  161. foreach (byte b in data)
  162. {
  163. lrc += b;
  164. }
  165. lrc = (byte)((lrc ^ 0xFF) + 1);
  166. return lrc;
  167. }
  168. /// <summary>
  169. /// Calculate Cyclical Redundancy Check.
  170. /// </summary>
  171. /// <param name="data">The data used in CRC.</param>
  172. /// <returns>CRC value.</returns>
  173. public static byte[] CalculateCrc(byte[] data)
  174. {
  175. if (data == null)
  176. {
  177. throw new ArgumentNullException(nameof(data));
  178. }
  179. ushort crc = ushort.MaxValue;
  180. foreach (byte b in data)
  181. {
  182. byte tableIndex = (byte)(crc ^ b);
  183. crc >>= 8;
  184. crc ^= CrcTable[tableIndex];
  185. }
  186. return BitConverter.GetBytes(crc);
  187. }
  188. }
  189. public static class Crc16
  190. {
  191. const ushort polynomial = 0xA001;
  192. static readonly ushort[] table = new ushort[256];
  193. public static ushort ComputeChecksum(byte[] bytes)
  194. {
  195. ushort crc = 0;
  196. for (int i = 0; i < bytes.Length; ++i)
  197. {
  198. byte index = (byte)(crc ^ bytes[i]);
  199. crc = (ushort)((crc >> 8) ^ table[index]);
  200. }
  201. return crc;
  202. }
  203. static Crc16()
  204. {
  205. ushort value;
  206. ushort temp;
  207. for (ushort i = 0; i < table.Length; ++i)
  208. {
  209. value = 0;
  210. temp = i;
  211. for (byte j = 0; j < 8; ++j)
  212. {
  213. if (((value ^ temp) & 0x0001) != 0)
  214. {
  215. value = (ushort)((value >> 1) ^ polynomial);
  216. }
  217. else
  218. {
  219. value >>= 1;
  220. }
  221. temp >>= 1;
  222. }
  223. table[i] = value;
  224. }
  225. }
  226. private static ushort Crc16Ccitt(byte[] bytes)
  227. {
  228. const ushort poly = 4129;
  229. ushort[] table = new ushort[256];
  230. ushort initialValue = 0xffff;
  231. ushort temp, a;
  232. ushort crc = initialValue;
  233. for (int i = 0; i < table.Length; ++i)
  234. {
  235. temp = 0;
  236. a = (ushort)(i << 8);
  237. for (int j = 0; j < 8; ++j)
  238. {
  239. if (((temp ^ a) & 0x8000) != 0)
  240. temp = (ushort)((temp << 1) ^ poly);
  241. else
  242. temp <<= 1;
  243. a <<= 1;
  244. }
  245. table[i] = temp;
  246. }
  247. for (int i = 0; i < bytes.Length; ++i)
  248. {
  249. crc = (ushort)((crc << 8) ^ table[((crc >> 8) ^ (0xff & bytes[i]))]);
  250. }
  251. return crc;
  252. }
  253. private static byte[] s_CRCHi = {
  254. 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0, 0x80, 0x41, 0x01, 0xC0,
  255. 0x80, 0x41, 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0, 0x80, 0x41,
  256. 0x00, 0xC1, 0x81, 0x40, 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0,
  257. 0x80, 0x41, 0x01, 0xC0, 0x80, 0x41, 0x00, 0xC1, 0x81, 0x40,
  258. 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0, 0x80, 0x41, 0x00, 0xC1,
  259. 0x81, 0x40, 0x01, 0xC0, 0x80, 0x41, 0x01, 0xC0, 0x80, 0x41,
  260. 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0, 0x80, 0x41, 0x00, 0xC1,
  261. 0x81, 0x40, 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0, 0x80, 0x41,
  262. 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0, 0x80, 0x41, 0x01, 0xC0,
  263. 0x80, 0x41, 0x00, 0xC1, 0x81, 0x40, 0x00, 0xC1, 0x81, 0x40,
  264. 0x01, 0xC0, 0x80, 0x41, 0x01, 0xC0, 0x80, 0x41, 0x00, 0xC1,
  265. 0x81, 0x40, 0x01, 0xC0, 0x80, 0x41, 0x00, 0xC1, 0x81, 0x40,
  266. 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0, 0x80, 0x41, 0x01, 0xC0,
  267. 0x80, 0x41, 0x00, 0xC1, 0x81, 0x40, 0x00, 0xC1, 0x81, 0x40,
  268. 0x01, 0xC0, 0x80, 0x41, 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0,
  269. 0x80, 0x41, 0x01, 0xC0, 0x80, 0x41, 0x00, 0xC1, 0x81, 0x40,
  270. 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0, 0x80, 0x41, 0x01, 0xC0,
  271. 0x80, 0x41, 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0, 0x80, 0x41,
  272. 0x00, 0xC1, 0x81, 0x40, 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0,
  273. 0x80, 0x41, 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0, 0x80, 0x41,
  274. 0x01, 0xC0, 0x80, 0x41, 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0,
  275. 0x80, 0x41, 0x00, 0xC1, 0x81, 0x40, 0x00, 0xC1, 0x81, 0x40,
  276. 0x01, 0xC0, 0x80, 0x41, 0x01, 0xC0, 0x80, 0x41, 0x00, 0xC1,
  277. 0x81, 0x40, 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0, 0x80, 0x41,
  278. 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0, 0x80, 0x41, 0x01, 0xC0,
  279. 0x80, 0x41, 0x00, 0xC1, 0x81, 0x40
  280. };
  281. private static byte[] s_CRCLo = {
  282. 0x00, 0xC0, 0xC1, 0x01, 0xC3, 0x03, 0x02, 0xC2, 0xC6, 0x06,
  283. 0x07, 0xC7, 0x05, 0xC5, 0xC4, 0x04, 0xCC, 0x0C, 0x0D, 0xCD,
  284. 0x0F, 0xCF, 0xCE, 0x0E, 0x0A, 0xCA, 0xCB, 0x0B, 0xC9, 0x09,
  285. 0x08, 0xC8, 0xD8, 0x18, 0x19, 0xD9, 0x1B, 0xDB, 0xDA, 0x1A,
  286. 0x1E, 0xDE, 0xDF, 0x1F, 0xDD, 0x1D, 0x1C, 0xDC, 0x14, 0xD4,
  287. 0xD5, 0x15, 0xD7, 0x17, 0x16, 0xD6, 0xD2, 0X8, 0x13, 0xD3,
  288. 0x11, 0xD1, 0xD0, 0x10, 0xF0, 0x30, 0x31, 0xF1, 0x33, 0xF3,
  289. 0xF2, 0x32, 0x36, 0xF6, 0xF7, 0x37, 0xF5, 0x35, 0x34, 0xF4,
  290. 0x3C, 0xFC, 0xFD, 0x3D, 0xFF, 0x3F, 0x3E, 0xFE, 0xFA, 0x3A,
  291. 0x3B, 0xFB, 0x39, 0xF9, 0xF8, 0x38, 0x28, 0xE8, 0xE9, 0x29,
  292. 0xEB, 0x2B, 0x2A, 0xEA, 0xEE, 0x2E, 0x2F, 0xEF, 0x2D, 0xED,
  293. 0xEC, 0x2C, 0xE4, 0x24, 0x25, 0xE5, 0x27, 0xE7, 0xE6, 0x26,
  294. 0x22, 0xE2, 0xE3, 0x23, 0xE1, 0x21, 0x20, 0xE0, 0xA0, 0x60,
  295. 0x61, 0xA1, 0x63, 0xA3, 0xA2, 0x62, 0x66, 0xA6, 0xA7, 0x67,
  296. 0xA5, 0x65, 0x64, 0xA4, 0x6C, 0xAC, 0xAD, 0x6D, 0xAF, 0x6F,
  297. 0x6E, 0xAE, 0xAA, 0x6A, 0x6B, 0xAB, 0x69, 0xA9, 0xA8, 0x68,
  298. 0x78, 0xB8, 0xB9, 0x79, 0xBB, 0x7B, 0x7A, 0xBA, 0xBE, 0x7E,
  299. 0x7F, 0xBF, 0x7D, 0xBD, 0xBC, 0x7C, 0xB4, 0x74, 0x75, 0xB5,
  300. 0x77, 0xB7, 0xB6, 0x76, 0x72, 0xB2, 0xB3, 0x73, 0xB1, 0x71,
  301. 0x70, 0xB0, 0x50, 0x90, 0x91, 0x51, 0x93, 0x53, 0x52, 0x92,
  302. 0x96, 0x56, 0x57, 0x97, 0x55, 0x95, 0x94, 0x54, 0x9C, 0x5C,
  303. 0x5D, 0x9D, 0x5F, 0x9F, 0x9E, 0x5E, 0x5A, 0x9A, 0x9B, 0x5B,
  304. 0x99, 0x59, 0x58, 0x98, 0x88, 0x48, 0x49, 0x89, 0x4B, 0x8B,
  305. 0x8A, 0x4A, 0x4E, 0x8E, 0x8F, 0x4F, 0x8D, 0x4D, 0x4C, 0x8C,
  306. 0x44, 0x84, 0x85, 0x45, 0x87, 0x47, 0x46, 0x86, 0x82, 0x42,
  307. 0x43, 0x83, 0x41, 0x81, 0x80, 0x40
  308. };
  309. public static ushort CRC16_Modbus(byte[] _pBuf)
  310. {
  311. byte ucCRCHi = 0xFF;/* 高CRC字节初始化 */
  312. byte ucCRCLo = 0xFF; /* 低CRC 字节初始化 */
  313. UInt16 usIndex; /* CRC循环中的索引 */
  314. int _usLen = _pBuf.Length;
  315. for(int i=0;i<_pBuf.Length;i++)
  316. {
  317. usIndex = (byte)(ucCRCHi ^ _pBuf[i]); /* 计算CRC */
  318. ucCRCHi = (byte)(ucCRCLo ^ s_CRCHi[usIndex]);
  319. ucCRCLo = s_CRCLo[usIndex];
  320. }
  321. return (ushort)(ucCRCHi << 8 | ucCRCLo);
  322. }
  323. }
  324. }