电机驱动上的CRC校验,网上找的计算工具好像都不太相符
uint8_t CalcCRCByte(uint8_t u8Byte, uint8_t u8CRC)
{
uint8_t i;
u8CRC = u8CRC ^ u8Byte;
for (i = 0; i < 8; i++)
{
if (u8CRC & 0x01)
{
u8CRC = (u8CRC >> 1) ^ polynomial;
}
else
{
u8CRC >>= 1;
}
}
return u8CRC;
}
友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
我这里有一个CRC的文件,你看一下。
异或值是0。
常用有两种
[mw_shl_code=c,true]/* crc8 poly = x8+x5+x4+1 = 0x131 */
static uint8_t crc8(const uint8_t *ptr, int len, uint8_t crc)
{
uint8_t i;
while(len--)
{
crc ^= *ptr++;
for(i = 0;i < 8;i++)
{
if(crc & 0x01)
{
/* 0x31(0011 0001) ==> 0x8C(1000 1100) */
crc = (crc >> 1) ^ 0x8C;
}
else
{
crc >>= 1;
}
}
}
return crc;
}[/mw_shl_code]
[mw_shl_code=c,true]/*
crc8 poly = 0x107 (x8+x2+x1+1)
*/
uint8_t crc8(const uint8_t *buf, uint32_t len)
{
uint32_t i, j;
uint8_t CRC = 0, _crc_poly = 0x07;
for (j=0; j<len; j++)
{
CRC ^= buf[j];
for(i = 0; i<8; i++)
{
if(CRC & 0x80)
CRC = (CRC << 1) ^ _crc_poly;
else
CRC <<= 1;
}
//CRC &= 0xff;
}
return CRC;
}
[/mw_shl_code]
我自己根据代码用vc写了个CRC校验小程序,结果是对的,但是网上有网页的校验,设置了还是不对,想问问为什么
一周热门 更多>