Part Number:DRV3245Q-Q1
CRC Implementation with DRV32xxSeries" 这个文档里面CRC的表格这个函数是不是有点问题,这个函数的效果等同于while(1)
是否应该为以上函数
void generate_crctable(){
byte crctable[256];
for(int I = 0; I < 256; I++){
crc = I;
for(int j = 8; j > 0; j–){
if((crc & 0x80) != 0){
crc <<= 1;
crc ^= 0x2F;
}
else{
crc <<= 1;
}
}
crctable[i] = crc;
}
return crctable;
}
Katherine Wang:
已为您咨询TI资深工程师,稍后给您回复
,
Sam Sun:
你好 还是没有什么更新吗
,
Katherine Wang:
已为您催过工程师,您也可以关注英文原帖(+) DRV3245Q-Q1: Whether there is an issue with the CRC routine – Motor drivers forum – Motor drivers – TI E2E support forums了解最新进展