添加收藏夹  设为首页  深圳服务热线:13751165337  13692101218
51电子网联系电话:13751165337
位置:首页 > IC型号导航 > 首字符L型号页 > 首字符L的型号第619页 > LRI2K > LRI2K PDF资料 > LRI2K PDF资料1第86页
CRC (资料)
}
其他
// CRC校验
{
number_of_databytes = NUMBER_OF_BYTES + 2 ;
}
current_crc_value = PRESET_VALUE ;
对于( i = 0 ;我< number_of_databytes ;我+ + )
{
current_crc_value = current_crc_value ^ ( (无符号
整数) array_of_databytes [I ]);
对于( J = 0 ; < 8 ; J ++ )
{
如果( current_crc_value & 0001H )
{
current_crc_value = ( current_crc_value >> 1 ) ^
多项式;
}
其他
{
current_crc_value = ( current_crc_value >> 1 ) ;
}
}
}
如果( calculate_or_check_crc == CALC_CRC )
{
current_crc_value = current_crc_value ;
的printf ( "Generated CRC是为0x % 04X \\ n" , current_crc_value ) ;
//
//
}
其他
{
if
{
LRI2K
current_crc_value现在已经准备好要追加到数据
(先低字节,然后高字节)
// CRC校验
( current_crc_value == CHECK_VALUE )
的printf ( "Checked CRC是确定的(为0x% 04X ) \\ n" ,
current_crc_value ) ;
}
其他
{
的printf ( "Checked CRC也不行(为0x% 04X ) \\ n" ,
current_crc_value ) ;
}
}
}
86/89

深圳市碧威特网络技术有限公司