虫虫首页| 资源下载| 资源专辑| 精品软件
登录| 注册

您现在的位置是:虫虫下载站 > 资源下载 > 软件设计/软件工程 > 如何编写读/写一个字节的函数呢? 1. 读一个字节 uchar tmpread(void) //read a byte date 读一个字节 { uchar i,j,dat dat=0

如何编写读/写一个字节的函数呢? 1. 读一个字节 uchar tmpread(void) //read a byte date 读一个字节 { uchar i,j,dat dat=0

  • 资源大小:4 K
  • 上传时间: 2017-09-06
  • 上传用户:qw4104
  • 资源积分:2 下载积分
  • 标      签: uchar dat tmpread read

资 源 简 介

如何编写读/写一个字节的函数呢? 1. 读一个字节 uchar tmpread(void) //read a byte date 读一个字节 { uchar i,j,dat dat=0 for(i=1 i<=8 i++) { j=tmpreadbit() dat=(j<<7)|(dat>>1) //读出的数据最低位在最前面,这样刚好一个字节在DAT里 } return(dat) //将一个字节数据返回 }

相 关 资 源

您 可 能 感 兴 趣 的