计算crc8 – crc8
计算crc8。参数通过 crc8init 函数设置。
定义
byte crc8(byte[] data,, int start , int int len);
参数
- data:
要计算的byte类型数组
- start:
数组下标起始位置
- len:
计算的字节长度
返回值
无
示例
byte a[5] = {0x01,0x02,0x03,0x04,0x05};
num6.val = crc8(a,0,5);
//计算数组a的5个字节的crc8,计算结果num6控件显示为188,即0xBC
//网页在线计算工具http://www.ip33.com/crc.html