文件名称:异或校验计算器
文件大小:96KB
文件格式:ZIP
更新时间:2021-12-26 05:08:55
异或校验
顺便分享一下异或校验的代码,也是我一直在用的: /******************************************************************************* Name:XORCheck Function: XORCheck. Input:buffer,size Return:result ******************************************/ uint8_t XORCheck(uint8_t* buffer, uint8_t size) { uint8_t i; uint8_t checksum = 0; for(i = 0; i < (size-1); i++) { checksum ^= *buffer++; } return checksum; }
【文件预览】:
GetHex.exe