在线时间0 小时
UID404205
ST金币0
蝴蝶豆0
注册时间2012-11-28
新手上路
- 最后登录
- 1970-1-1
|
a0a.1 0b0c
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
|