<?xml version="1.0" encoding="gbk"?>
<rss version="2.0">
<channel>
 <title><![CDATA[新手原创：mini2440按键驱动及详细解释]]></title>
 <link><![CDATA[http://aiothome.net/read.php?tid=3157]]></link>
 <description><![CDATA[Latest 20 replies of 新手原创：mini2440按键驱动及详细解释]]></description>
 <copyright><![CDATA[Copyright(C) ]]></copyright>
 <generator><![CDATA[PHPWind Forums by PHPWind Studio]]></generator>
 <lastBuildDate><![CDATA[Sun, 26 Jul 2026 21:03:03 +0000]]></lastBuildDate>
  <image>
 <url><![CDATA[images/rss.gif]]></url>
 <title><![CDATA[PHPWind Board]]></title>
 <link><![CDATA[http://aiothome.net]]></link>
 <description><![CDATA[]]></description>
  </image>
<item>
 <title><![CDATA[]]></title>
 <description><![CDATA[能告诉抄谁版本吗 没有完全注释啊]]></description>
 <link><![CDATA[http://aiothome.net/read.php?tid=3157#76535]]></link>
 <author><![CDATA[shihuaiwen]]></author>
 <category><![CDATA[Linux技术交流区]]></category>
 <pubdate><![CDATA[Wed, 20 Apr 2011 08:36:14 +0000]]></pubdate>
</item>
<item>
 <title><![CDATA[]]></title>
 <description><![CDATA[学习了！]]></description>
 <link><![CDATA[http://aiothome.net/read.php?tid=3157#14264]]></link>
 <author><![CDATA[dreamflying]]></author>
 <category><![CDATA[Linux技术交流区]]></category>
 <pubdate><![CDATA[Tue, 29 Dec 2009 08:04:54 +0000]]></pubdate>
</item>
<item>
 <title><![CDATA[]]></title>
 <description><![CDATA[学习一下]]></description>
 <link><![CDATA[http://aiothome.net/read.php?tid=3157#14106]]></link>
 <author><![CDATA[ustc85]]></author>
 <category><![CDATA[Linux技术交流区]]></category>
 <pubdate><![CDATA[Thu, 24 Dec 2009 13:03:48 +0000]]></pubdate>
</item>
<item>
 <title><![CDATA[]]></title>
 <description><![CDATA[[attachment=650] 
附件是驱动的源代码，只要修改Makefile里面的内核路径就可以make了，欢迎多交流！
不知道怎么把附件整理到1楼去，请版主帮忙了！]]></description>
 <link><![CDATA[http://aiothome.net/read.php?tid=3157#12173]]></link>
 <author><![CDATA[冰冷的火]]></author>
 <category><![CDATA[Linux技术交流区]]></category>
 <pubdate><![CDATA[Fri, 06 Nov 2009 14:45:54 +0000]]></pubdate>
</item>
<item>
 <title><![CDATA[]]></title>
 <description><![CDATA[楼主您好&nbsp;&nbsp;我最近一直在学习您的这段按键驱动代码 但是总是编译过不去 会不会是您发帖粘贴的时候丢了些字符 不知能否发给我一份源文件呢？ 多谢了&nbsp;&nbsp;我的邮箱是[email]xwj_888@tom.com[/email]]]></description>
 <link><![CDATA[http://aiothome.net/read.php?tid=3157#12046]]></link>
 <author><![CDATA[33479758]]></author>
 <category><![CDATA[Linux技术交流区]]></category>
 <pubdate><![CDATA[Wed, 04 Nov 2009 11:40:23 +0000]]></pubdate>
</item>
<item>
 <title><![CDATA[回 5楼(33479758) 的帖子]]></title>
 <description><![CDATA[实测。。。都是自己敲进去的。。。在mini2440上运行过]]></description>
 <link><![CDATA[http://aiothome.net/read.php?tid=3157#11496]]></link>
 <author><![CDATA[冰冷的火]]></author>
 <category><![CDATA[Linux技术交流区]]></category>
 <pubdate><![CDATA[Sat, 24 Oct 2009 07:14:16 +0000]]></pubdate>
</item>
<item>
 <title><![CDATA[]]></title>
 <description><![CDATA[楼主在板子上实测过这段代码么？]]></description>
 <link><![CDATA[http://aiothome.net/read.php?tid=3157#11388]]></link>
 <author><![CDATA[33479758]]></author>
 <category><![CDATA[Linux技术交流区]]></category>
 <pubdate><![CDATA[Wed, 21 Oct 2009 15:59:38 +0000]]></pubdate>
</item>
<item>
 <title><![CDATA[]]></title>
 <description><![CDATA[open最好用 NONBLOCK 参数，非阻塞模式。
否则只有按键后才能执行其他操作。]]></description>
 <link><![CDATA[http://aiothome.net/read.php?tid=3157#11134]]></link>
 <author><![CDATA[liu90091]]></author>
 <category><![CDATA[Linux技术交流区]]></category>
 <pubdate><![CDATA[Thu, 15 Oct 2009 07:51:39 +0000]]></pubdate>
</item>
<item>
 <title><![CDATA[]]></title>
 <description><![CDATA[测试过吗？]]></description>
 <link><![CDATA[http://aiothome.net/read.php?tid=3157#10500]]></link>
 <author><![CDATA[practiceiqx]]></author>
 <category><![CDATA[Linux技术交流区]]></category>
 <pubdate><![CDATA[Sun, 27 Sep 2009 07:44:19 +0000]]></pubdate>
</item>
<item>
 <title><![CDATA[]]></title>
 <description><![CDATA[测试代码：
#include &lt;stdio.h&gt;
#include &lt;stdlib.h&gt;
#include &lt;unistd.h&gt;

int main()
{
&nbsp;&nbsp;&nbsp;&nbsp;int fd,ret,key_num;
&nbsp;&nbsp;&nbsp;&nbsp;fd = open(&quot;/dev/Mini2440_Key&quot;, 0);
&nbsp;&nbsp;&nbsp;&nbsp;if(fd &lt; 0)
&nbsp;&nbsp;&nbsp;&nbsp;{
&nbsp;&nbsp;&nbsp;& ..]]></description>
 <link><![CDATA[http://aiothome.net/read.php?tid=3157#10396]]></link>
 <author><![CDATA[冰冷的火]]></author>
 <category><![CDATA[Linux技术交流区]]></category>
 <pubdate><![CDATA[Thu, 24 Sep 2009 15:40:02 +0000]]></pubdate>
</item>
<item>
 <title><![CDATA[]]></title>
 <description><![CDATA[下面是完整驱动代码：
//********************************************//
//&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 书写规范&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;& ..]]></description>
 <link><![CDATA[http://aiothome.net/read.php?tid=3157#10395]]></link>
 <author><![CDATA[冰冷的火]]></author>
 <category><![CDATA[Linux技术交流区]]></category>
 <pubdate><![CDATA[Thu, 24 Sep 2009 15:38:10 +0000]]></pubdate>
</item>
</channel></rss>