08 2022 档案

摘要://基于查表实现BCD与Ascii之间的转换 static char unsigned bcd2ascii[16] = {'0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 阅读全文
posted @ 2022-08-18 08:59 dhhu007 阅读(213) 评论(0) 推荐(0)
摘要:unsigned char name[15] = {"1234567890abcde"}; unsigned char name1[15] = {0x31,0x32,0x33,0x34,0x35,0x31,0x32,0x33,0x34,0x35,0x31,0x32,0x33,0x34,0x35}; 阅读全文
posted @ 2022-08-13 16:04 dhhu007 阅读(2937) 评论(0) 推荐(0)