Loading

摘要: private static ushort Calc(byte[] data) { ushort wCRC = 0; for (int i = 0; i < data.Length; i++) { wCRC ^= (ushort)(data[i] << 8); for (int j = 0; j < 阅读全文
posted @ 2023-03-14 10:07 Stay627 阅读(58) 评论(0) 推荐(0) 编辑