首页 > 代码库 > Error: Selected device is not a touchscreen I understand

Error: Selected device is not a touchscreen I understand

selected device is not a touchscreen I understand

 

arm交叉编译工具中的头文件库中的linux/input.h中的EV_VERSION定义为

#define EV_VERSION        0x010000


而linux内核include/linux/input.h中的EV_VERSION定义为
 

#define EV_VERSION        0x010001

 


由此可见问题就出现在内核的输入子系统的版本号不匹配的问题
    
解决办法:
   1.将内核源代码里的include/linux/input.h中的
  

// #define EV_VERSION        0x010001 #define EV_VERSION        0x010000