码迷,mamicode.com
首页 > 系统相关 > 详细

I.MX6 Linux 自动获取AR1020 event input节点

时间:2016-04-05 19:40:12      阅读:146      评论:0      收藏:0      [点我收藏+]

标签:

/***********************************************************************
 *             I.MX6 Linux 自动获取AR1020 event input节点
 * 说明:
 *     本文主要记录如何自动获取AR1020 SPI电阻Touch产生的设备节点。
 *
 *                                     2016-4-5 深圳 南山平山村 曾剑锋
 **********************************************************************/

cat /etc/profile
    ......
    while [ -z $touchEvent ]
    do
        inputCheckLine=`cat /proc/bus/input/devices | grep -n "AR1020" | grep "Touchscreen"| awk -F: {print $1}`
        touchEvent=`sed -n "$((${inputCheckLine}+4))p" /proc/bus/input/devices | grep -o "event."`
        usleep 10
    done
    ......

 

I.MX6 Linux 自动获取AR1020 event input节点

标签:

原文地址:http://www.cnblogs.com/zengjfgit/p/5356323.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!