2022年8月12日

摘要: uint8 calc_checksum(uint8 *p_data, int32 data_len) { uint8 sum = 0; while (data_len--) { sum += *p_data++; } return sum; } 阅读全文
posted @ 2022-08-12 13:16 不$学$无$术 阅读(70) 评论(0) 推荐(0)
 
摘要: int hextoDec(int hex){ int sum=0,mul=1; int i,r; int count=0; do{ r=hex%16; for(i=0;i<count;i++) mul*=16; mul*=r; sum+=mul; mul=1; count++; }while(hex 阅读全文
posted @ 2022-08-12 13:14 不$学$无$术 阅读(167) 评论(0) 推荐(0)