2022年8月31日

摘要: int dectoHex(int dec){ int hex = 0; int i,j; i=dec>>4; j=dec&0xf; hex=i*16+j; return hex;} 阅读全文
posted @ 2022-08-31 10:26 不$学$无$术 阅读(40) 评论(0) 推荐(0) 编辑
 

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 不$学$无$术 阅读(49) 评论(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 不$学$无$术 阅读(135) 评论(0) 推荐(0) 编辑