网站首页 站内搜索

搜索结果

查询Tags标签: pPack,共有 2条记录
  • 嵌入式编程中一些常用的转换函数

    1、字符串转十六进制 代码实现:void StrToHex(char *pbDest, char *pbSrc, int nLen) {char h1,h2;char s1,s2;int i;for (i=0; i<nLen/2; i++){h1 = pbSrc[2*i];h2 = pbSrc[2*i+1];s1 = toupper(h1) - 0x30; //toupper 转换为大写字母if (s1 > 9)s1 -= 7;s2 = tou…

    2021/10/12 17:15:46 人评论 次浏览
  • 嵌入式编程中一些常用的转换函数

    1、字符串转十六进制 代码实现:void StrToHex(char *pbDest, char *pbSrc, int nLen) {char h1,h2;char s1,s2;int i;for (i=0; i<nLen/2; i++){h1 = pbSrc[2*i];h2 = pbSrc[2*i+1];s1 = toupper(h1) - 0x30; //toupper 转换为大写字母if (s1 > 9)s1 -= 7;s2 = tou…

    2021/10/12 17:15:46 人评论 次浏览
扫一扫关注最新编程教程