CRC上位机的程序 这个程序是: u32 crctablefast (unsigned char* p, unsigned long len) { // fast lookup table algorithm without augmented zero bytes, e.g. used in pkzip. // only usable with polynom orders of 8, 16, 24 or 32. u32 crc = 0xFFFFFFFF; while (len--) { crc = (crc > 24) & 0xff) ^ *p++]; } return(crc); } void gen_crc_table(void) { u16 i, j; u32 crc_accum; for (i = 0; i |
HotPoweräºèå«å£«HotAjax(V1_06).rar
下载40.84 KB, 下载次数: 20, 下载积分: ST金币 -1
RE:crc32_jam 求解用于stm32f051的上位机通信
RE:CRC上位机通信