×

以ARM9为平台基于Linux2.6.30开发DS18B20的驱动程序

消耗积分:1 | 格式:rar | 大小:0.4 MB | 2017-10-17

分享资料个

本文介绍了Linux设备驱动程序的类型和文件操作接口函数,以及驱动程序的基本开发过程。以ARM9为平台,基于Linux2.6.30开发DS18B20的驱动程序,以模块的形式加载到内核,最后通过应用层调用驱动程序,获得温度数据。
  引言
  随着嵌入式技术的发展,基于ARM和Linux的嵌入式产品越来越多,DS18B20温度采集传感器在工业和生活上应用广泛,研究开发基于ARM9和Linux的DS18B20的驱动程序可以满足大部分温度采集平台的应用。
  1 Linux设备驱动的开发过程
  Linux操作系统通过各种驱动程序来操作硬件设备,它屏蔽了各种设备,设备驱动程序是操作系统内核和硬件之间的接口。从应用程序来看,硬件只是一个设备文件,应用程序可以像操作普通文件一样操作硬件设备。
  1.1设备的分类
  Linux看待设备可区分为3种基本设备类型,分别为字符设备、块设备和网络设备:
  ①字符设备:字符设备是一种可以当作一个字节流来存取的设备,相当于一个文件,字符设备驱动通常实现open、close、read和write系统调用;②块设备:如同字符设备,块设备通过位于/dev目录的文件系统结点来存取,块设备驱动程序主要通过传输固定大小的随机数据来访问设备,块设备驱动程序是核心内存与其他存储介质之间的管道;③网络设备:网络接口和一个已经挂载的块设备类似,网络接口使用特定的内核数据结构注册,与外界进行数据交换时调用,与块设备只响应来自内核的请求不同,Linux内核的网络子系统被设计成完全与协议无关,网络驱动程序异步地接收来自外界的数据包。
  1.2字符设备开发过程
  本项目开发的驱动程序都是字符设备驱动程序,因此简单介绍字符设备的开发过程。
  1.2.1重要的文件操作
  接口函数file_operation file_operation是一个字符驱动如何建立底层驱动与应用程序连接的结构体,包含以下重要的函数接口:
  ①int(*open)(struct inode*,struct file*):打开设备操作。
  ②ssize_t(*read)(struct file*,char__user*,size_t,loff_t*):从设备中获取数据,非负返回值代表成功读取的字节数。
  ③ssize_t(*write)(struct file*,const char__user*,size_t,loff_t*):发送数据给设备,非负返回值代表成功写入的字节数。
  ④int(* ioctl)(struct inode*,struct file*,unsigned int,unsigned long):系统调用提供了发出设备特定命令的方法。
  1.2.2设备打开与关闭
  open方法在应用程序调用open()系统调用时被调用,作用是打开设备;release方法在应用程序调用close()系统调用时被调用,作用是关闭设备。
  1.2.3驱动程序与应用程序交换
  数据交换的方式最直接的方法是在struct file_operation中的read/write方法中与用户空间的buffer进行数据的交换:unsigned long copy_to_user(void__user*to,const void*from,unsigned long count):从内核空间拷贝数据到用户空间;unsigned long copy_from_user(void*to,const void__user*from,unsigned long count):从用户空间拷贝数据到内核空间;1.2.4设备控制ioctl设备控制接口如下:①应用程序调用接口:int ioctl(int fd,unsigned longcmd,…):②设备驱动的相应接口:int(*ioctl)(struct inode*inode,struct file*filp,unsigned int cmd,unsigned long arg)。
  应用程序通过ioctl发送命令,从而调用驱动接口的ioctl.因此,在Linux字符设备驱动程序中主要实现open、read、write和ioctl函数分别对应Linux系统调用的open、read、write和ioctl来完成数据交互和设备操作。
  2温度传感器驱动软件设计
  DS18B20采用独特的单总线接口方式,每只DS18B20都有一个唯一存储在ROM中的64位编码。最前面8位是单线系列编码:28H,接着的48位是一个唯一的序列号,最后8位是以上56位的CRC编码。通过单线总线端口访问DS18B20的协议如下:①初始化;②发送ROM操作指令;③发送DS18B20功能指令。
  主要功能指令,如表1所列。
  以ARM9为平台基于Linux2.6.30开发DS18B20的驱动程序
  根据DS18B20的读写协议以及操作指令和功能指令,可以得出DS18B20的复位过程如图1所示,写操作流程如图2所示,读操作流程如图3所示。
  以ARM9为平台基于Linux2.6.30开发DS18B20的驱动程序

声明:本文内容及配图由入驻作者撰写或者入驻合作网站授权转载。文章观点仅代表作者本人,不代表电子发烧友网立场。文章及其配图仅供工程师学习之用,如有内容侵权或者其他违规问题,请联系本站处理。 举报投诉

评论(0)
发评论

下载排行榜

全部0条评论

快来发表一下你的评论吧 !

'+ '

'+ '

'+ ''+ '
'+ ''+ ''+ '
'+ ''+ '' ); $.get('/article/vipdownload/aid/'+webid,function(data){ if(data.code ==5){ $(pop_this).attr('href',"/login/index.html"); return false } if(data.code == 2){ //跳转到VIP升级页面 window.location.href="//m.lene-v.com/vip/index?aid=" + webid return false } //是会员 if (data.code > 0) { $('body').append(htmlSetNormalDownload); var getWidth=$("#poplayer").width(); $("#poplayer").css("margin-left","-"+getWidth/2+"px"); $('#tips').html(data.msg) $('.download_confirm').click(function(){ $('#dialog').remove(); }) } else { var down_url = $('#vipdownload').attr('data-url'); isBindAnalysisForm(pop_this, down_url, 1) } }); }); //是否开通VIP $.get('/article/vipdownload/aid/'+webid,function(data){ if(data.code == 2 || data.code ==5){ //跳转到VIP升级页面 $('#vipdownload>span').text("开通VIP 免费下载") return false }else{ // 待续费 if(data.code == 3) { vipExpiredInfo.ifVipExpired = true vipExpiredInfo.vipExpiredDate = data.data.endoftime } $('#vipdownload .icon-vip-tips').remove() $('#vipdownload>span').text("VIP免积分下载") } }); }).on("click",".download_cancel",function(){ $('#dialog').remove(); }) var setWeixinShare={};//定义默认的微信分享信息,页面如果要自定义分享,直接更改此变量即可 if(window.navigator.userAgent.toLowerCase().match(/MicroMessenger/i) == 'micromessenger'){ var d={ title:'以ARM9为平台基于Linux2.6.30开发DS18B20的驱动程序',//标题 desc:$('[name=description]').attr("content"), //描述 imgUrl:'https://'+location.host+'/static/images/ele-logo.png',// 分享图标,默认是logo link:'',//链接 type:'',// 分享类型,music、video或link,不填默认为link dataUrl:'',//如果type是music或video,则要提供数据链接,默认为空 success:'', // 用户确认分享后执行的回调函数 cancel:''// 用户取消分享后执行的回调函数 } setWeixinShare=$.extend(d,setWeixinShare); $.ajax({ url:"//www.lene-v.com/app/wechat/index.php?s=Home/ShareConfig/index", data:"share_url="+encodeURIComponent(location.href)+"&format=jsonp&domain=m", type:'get', dataType:'jsonp', success:function(res){ if(res.status!="successed"){ return false; } $.getScript('https://res.wx.qq.com/open/js/jweixin-1.0.0.js',function(result,status){ if(status!="success"){ return false; } var getWxCfg=res.data; wx.config({ //debug: true, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。 appId:getWxCfg.appId, // 必填,公众号的唯一标识 timestamp:getWxCfg.timestamp, // 必填,生成签名的时间戳 nonceStr:getWxCfg.nonceStr, // 必填,生成签名的随机串 signature:getWxCfg.signature,// 必填,签名,见附录1 jsApiList:['onMenuShareTimeline','onMenuShareAppMessage','onMenuShareQQ','onMenuShareWeibo','onMenuShareQZone'] // 必填,需要使用的JS接口列表,所有JS接口列表见附录2 }); wx.ready(function(){ //获取“分享到朋友圈”按钮点击状态及自定义分享内容接口 wx.onMenuShareTimeline({ title: setWeixinShare.title, // 分享标题 link: setWeixinShare.link, // 分享链接 imgUrl: setWeixinShare.imgUrl, // 分享图标 success: function () { setWeixinShare.success; // 用户确认分享后执行的回调函数 }, cancel: function () { setWeixinShare.cancel; // 用户取消分享后执行的回调函数 } }); //获取“分享给朋友”按钮点击状态及自定义分享内容接口 wx.onMenuShareAppMessage({ title: setWeixinShare.title, // 分享标题 desc: setWeixinShare.desc, // 分享描述 link: setWeixinShare.link, // 分享链接 imgUrl: setWeixinShare.imgUrl, // 分享图标 type: setWeixinShare.type, // 分享类型,music、video或link,不填默认为link dataUrl: setWeixinShare.dataUrl, // 如果type是music或video,则要提供数据链接,默认为空 success: function () { setWeixinShare.success; // 用户确认分享后执行的回调函数 }, cancel: function () { setWeixinShare.cancel; // 用户取消分享后执行的回调函数 } }); //获取“分享到QQ”按钮点击状态及自定义分享内容接口 wx.onMenuShareQQ({ title: setWeixinShare.title, // 分享标题 desc: setWeixinShare.desc, // 分享描述 link: setWeixinShare.link, // 分享链接 imgUrl: setWeixinShare.imgUrl, // 分享图标 success: function () { setWeixinShare.success; // 用户确认分享后执行的回调函数 }, cancel: function () { setWeixinShare.cancel; // 用户取消分享后执行的回调函数 } }); //获取“分享到腾讯微博”按钮点击状态及自定义分享内容接口 wx.onMenuShareWeibo({ title: setWeixinShare.title, // 分享标题 desc: setWeixinShare.desc, // 分享描述 link: setWeixinShare.link, // 分享链接 imgUrl: setWeixinShare.imgUrl, // 分享图标 success: function () { setWeixinShare.success; // 用户确认分享后执行的回调函数 }, cancel: function () { setWeixinShare.cancel; // 用户取消分享后执行的回调函数 } }); //获取“分享到QQ空间”按钮点击状态及自定义分享内容接口 wx.onMenuShareQZone({ title: setWeixinShare.title, // 分享标题 desc: setWeixinShare.desc, // 分享描述 link: setWeixinShare.link, // 分享链接 imgUrl: setWeixinShare.imgUrl, // 分享图标 success: function () { setWeixinShare.success; // 用户确认分享后执行的回调函数 }, cancel: function () { setWeixinShare.cancel; // 用户取消分享后执行的回调函数 } }); }); }); } }); } function openX_ad(posterid, htmlid, width, height) { if ($(htmlid).length > 0) { var randomnumber = Math.random(); var now_url = encodeURIComponent(window.location.href); var ga = document.createElement('iframe'); ga.src = 'https://www1.elecfans.com/www/delivery/myafr.php?target=_blank&cb=' + randomnumber + '&zoneid=' + posterid+'&prefer='+now_url; ga.width = width; ga.height = height; ga.frameBorder = 0; ga.scrolling = 'no'; var s = $(htmlid).append(ga); } } openX_ad(828, '#berry-300', 300, 250);