- Java锁的逻辑(结合对象头和ObjectMonitor)
- 还在用饼状图?来瞧瞧这些炫酷的百分比可视化新图形(附代码实现)⛵
- 自动注册实体类到EntityFrameworkCore上下文,并适配ABP及ABPVNext
- 基于Sklearn机器学习代码实战
常见的输入设备有键盘、鼠标、遥控杆、书写板、触摸屏等等,用户通过这些输入设备与Linux系统进行数据交换.
// include/linux/input.h
struct input_dev {
const char *name; //设备名称
const char *phys; //设备物理路径
const char *uniq; //设备唯一标识码
struct input_id id;
unsigned long propbit[BITS_TO_LONGS(INPUT_PROP_CNT)];
unsigned long evbit[BITS_TO_LONGS(EV_CNT)]; //支持什么类型的输入事件
unsigned long keybit[BITS_TO_LONGS(KEY_CNT)]; //支持按键输入事件的话,支持哪些按键(键盘)
unsigned long relbit[BITS_TO_LONGS(REL_CNT)]; //支持相对位移事件的话,支持哪些
unsigned long absbit[BITS_TO_LONGS(ABS_CNT)];
unsigned long mscbit[BITS_TO_LONGS(MSC_CNT)];
unsigned long ledbit[BITS_TO_LONGS(LED_CNT)];
unsigned long sndbit[BITS_TO_LONGS(SND_CNT)];
unsigned long ffbit[BITS_TO_LONGS(FF_CNT)];
unsigned long swbit[BITS_TO_LONGS(SW_CNT)];
.......
};
查看所有的输入设备:
ls /dev/input/* -l
查看输入设备的信息:
cat /proc/bus/input/devices
得到如下信息:
[root@imx6ull:~]# cat /proc/bus/input/devices
I: Bus=0019 Vendor=0000 Product=0000 Version=0000
N: Name="20cc000.snvs:snvs-powerkey"
P: Phys=snvs-pwrkey/input0
S: Sysfs=/devices/soc0/soc/2000000.aips-bus/20cc000.snvs/20cc000.snvs:snvs-powerkey/input/input0
U: Uniq=
H: Handlers=kbd event0 evbug
B: PROP=0
B: EV=3
B: KEY=100000 0 0 0
I: Bus=0018 Vendor=dead Product=beef Version=28bb //设备ID(定义在input.h的struct input_id结构体)
N: Name="goodix-ts" //名称
P: Phys=input/ts //物理地址
S: Sysfs=/devices/virtual/input/input1 //sys系统地址
U: Uniq= //标识号(无)
H: Handlers=event1 evbug
B: PROP=2 //设备属性
B: EV=b //支持何种输入事件
B: KEY=1c00 0 0 0 0 0 0 0 0 0 0 //设备具有的键
B: ABS=6e18000 0
I: Bus=0019 Vendor=0001 Product=0001 Version=0100
N: Name="gpio-keys"
P: Phys=gpio-keys/input0
S: Sysfs=/devices/soc0/gpio-keys/input/input2
U: Uniq=
H: Handlers=kbd event2 evbug
B: PROP=0
B: EV=3
B: KEY=c
// include/linux/input.h
struct input_value {
__u16 type; //当前数据的事件类型
__u16 code; //当前事件类型下的哪一个事件
__s32 value; //
};
Type的内容:
// include/uapi/linux/input-event-codes.h
/*
* Event types
*/
#define EV_SYN 0x00 //同步事件
#define EV_KEY 0x01 //键盘事件
#define EV_REL 0x02 //相对位移事件
#define EV_ABS 0x03 //绝对位移事件
#define EV_MSC 0x04
#define EV_SW 0x05
#define EV_LED 0x11
#define EV_SND 0x12
#define EV_REP 0x14
#define EV_FF 0x15
#define EV_PWR 0x16
#define EV_FF_STATUS 0x17
#define EV_MAX 0x1f
#define EV_CNT (EV_MAX+1)
code的内容(以EV_KEY举例) 。
// include/uapi/linux/input-event-codes.h
#define KEY_RESERVED 0
#define KEY_ESC 1
#define KEY_1 2
#define KEY_2 3
#define KEY_3 4
#define KEY_4 5
#define KEY_5 6
#define KEY_6 7
#define KEY_7 8
#define KEY_8 9
#define KEY_9 10
#define KEY_0 11
request | 说明 |
---|---|
EVIOCGID | 返回输入设备ID |
EVIOCGBIT(ev,len) | 获取输入设备支持的事件类型列表 |
ev值的说明: ev参数表示要获取的事件类型,它是一个整数值 。
EVIOCGBIT的iotcl调用说明: 必须使用 。
len = ioctl(fd, EVIOCGBIT(0, sizeof(evbit)), evbit);
//len是evbit的实际读取大小,如果单独使用sizeof(evbit)得到len,将发生段错误
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <stdio.h>
#include <sys/ioctl.h>
#include <linux/input.h>
/* 用法:./get_input_info /dev/input/event0 */
int main(int argc, char const **argv)
{
int fd;
struct input_id id;
int err;
unsigned char byte;
unsigned int evbit[2];
int i;
int bit;
unsigned int len;
char *ev_names[] = {
"EV_SYN ",
"EV_KEY ",
"EV_REL ",
"EV_ABS ",
"EV_MSC ",
"EV_SW ",
"NULL ",
"NULL ",
"NULL ",
"NULL ",
"NULL ",
"NULL ",
"NULL ",
"NULL ",
"NULL ",
"NULL ",
"NULL ",
"EV_LED ",
"EV_SND ",
"NULL ",
"EV_REP ",
"EV_FF ",
"EV_PWR ",
};
if(argc != 2)
{
printf("Usage: %s <dev>\n", argv[0]);
return -1;
}
fd = open(argv[1], O_RDWR);
if(fd == -1)
{
printf("can not open %s\n", argv[1]);
return -1;
}
err = ioctl(fd, EVIOCGID, &id); //返回输入设备ID
if(err == 0)
{
printf("bustype = 0x%x\n", id.bustype );
printf("vendor = 0x%x\n", id.vendor );
printf("product = 0x%x\n", id.product );
printf("version = 0x%x\n", id.version );
}
len = ioctl(fd, EVIOCGBIT(0,sizeof(evbit)), evbit); //返回输入事件类型
printf("support ev type:\n");
for(i = 0;i < len;i++)
{
byte = ((unsigned char *)evbit)[i];
for(bit = 0;bit < 8;bit++)
{
if(byte & (1<<bit))
{
printf("%s \n", ev_names[i*8 + bit]);
}
}
}
return 0;
}
[root@imx6ull:/mnt]# ./get_input_info /dev/input/event0
bustype = 0x19
vendor = 0x0
product = 0x0
version = 0x0
support ev type:
EV_SYN
EV_KEY
[root@imx6ull:/mnt]# ./get_input_info /dev/input/event1
bustype = 0x18
vendor = 0xdead
product = 0xbeef
version = 0x28bb
support ev type:
EV_SYN
EV_KEY
EV_ABS
[root@imx6ull:~]# cat /proc/bus/input/devices
I: Bus=0019 Vendor=0000 Product=0000 Version=0000
N: Name="20cc000.snvs:snvs-powerkey"
P: Phys=snvs-pwrkey/input0
S: Sysfs=/devices/soc0/soc/2000000.aips-bus/20cc000.snvs/20cc000.snvs:snvs-powerkey/input/input0
U: Uniq=
H: Handlers=kbd event0 evbug
B: PROP=0
B: EV=3
B: KEY=100000 0 0 0
I: Bus=0018 Vendor=dead Product=beef Version=28bb
N: Name="goodix-ts"
P: Phys=input/ts
S: Sysfs=/devices/virtual/input/input1
U: Uniq=
H: Handlers=event1 evbug
B: PROP=2
B: EV=b
B: KEY=1c00 0 0 0 0 0 0 0 0 0 0
B: ABS=6e18000 0
I: Bus=0019 Vendor=0001 Product=0001 Version=0100
N: Name="gpio-keys"
P: Phys=gpio-keys/input0
S: Sysfs=/devices/soc0/gpio-keys/input/input2
U: Uniq=
H: Handlers=kbd event2 evbug
B: PROP=0
B: EV=3
B: KEY=c
结论:EV值与程序输出的type结果一致 。
所谓的阻塞与非阻塞,是在open处声明。当设置为阻塞方式,如果没有输入事件,整个进程都在阻塞态 。
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <stdio.h>
#include <sys/ioctl.h>
#include <linux/input.h>
#include <unistd.h>
#include <string.h>
/* 用法:./get_input_info /dev/input/event0 */
int main(int argc, char const **argv)
{
int fd;
unsigned int len;
struct input_event event; //read读到的是input_event类型的结构体
if(argc < 2)
{
printf("Usage: %s <dev> [noblock]\n", argv[0]);
return -1;
}
if(argc == 3 && !strcmp(argv[2], "noblock"))
{
fd = open(argv[1], O_RDWR | O_NONBLOCK); //非阻塞(查询)
}
else
{
fd = open(argv[1], O_RDWR);
}
if(fd == -1)
{
printf("can not open %s\n", argv[1]);
return -1;
}
while(1)
{
len = read(fd, &event, sizeof(event)); //阻塞方式下,进程阻塞在此
if(len == sizeof(event))
{
printf("type = 0x%x, code = 0x%x, value = 0x%x", event.type, event.code, event.value);
}
else
{
printf("read err %d", len);
}
}
return 0;
}
poll会在设定的时间内进行监听,当改时间内有输入事件返回或超过设定时间没有事件返回,poll都将唤醒。poll/select函数可以监测多个文件,可以监测多种事件.
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <stdio.h>
#include <sys/ioctl.h>
#include <linux/input.h>
#include <unistd.h>
#include <string.h>
#include <poll.h>
/* 用法:./get_input_info /dev/input/event0 */
int main(int argc, char const **argv)
{
int fd;
struct input_event event; //read读到的是input_event类型的结构体
struct pollfd pollfd;
nfds_t nfds = 1; //同时打开一个文件
if(argc != 2)
{
printf("Usage: %s <dev>\n", argv[0]);
return -1;
}
fd = open(argv[1], O_RDWR | O_NONBLOCK); //非阻塞(查询)
if(fd == -1)
{
printf("can not open %s\n", argv[1]);
return -1;
}
while(1)
{
pollfd.fd = fd;
pollfd.events = POLLIN;
pollfd.revents = 0; //revents初始化为0,当有输入事件传入,内核改写revents
poll(&pollfd, nfds, 3000); //poll等待时间为3s
if(pollfd.revents == POLLIN) //只有poll函数返回了数据,才调用read
{
while(read(fd, &event, sizeof(event)) == sizeof(event)) //把一次获取到的数据读完再退出
{
printf("type = 0x%x, code = 0x%x, value = 0x%x\n", event.type, event.code, event.value);
}
}
else if(pollfd.revents == 0)
{
printf("time out\n");
}
else
{
printf("read err\n");
}
}
return 0;
}
struct pollfd pollfd[n]; //n为文件个数
nfds_t nfds = n; //同时打开n个文件
.......
if(pollfd[0].revents == POLLIN){} //依次访问revents
if(pollfd[1].revents == POLLIN){}
.......
[补充]fcntl的五个功能:
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <stdio.h>
#include <sys/ioctl.h>
#include <linux/input.h>
#include <unistd.h>
#include <string.h>
#include <signal.h>
int fd;
void sig_func(int sig)
{
struct input_event event;
while(read(fd, &event, sizeof(event)) == sizeof(event))
{
printf("type = 0x%x, code = 0x%x, value = 0x%x\n", event.type, event.code, event.value);
}
}
/* 用法:./get_input_info /dev/input/event0 */
int main(int argc, char const **argv)
{
int count = 0;
unsigned short flag;
if(argc != 2)
{
printf("Usage: %s <dev>\n", argv[0]);
return -1;
}
signal(SIGIO, sig_func); //1.注册信号处理函数(信号类型为IO类型)
fd = open(argv[1], O_RDWR | O_NONBLOCK); //2.打开驱动(一定要用非阻塞方式,否则无输入事件进程一直被阻塞)
if(fd == -1)
{
printf("can not open %s\n", argv[1]);
return -1;
}
fcntl(fd ,F_SETOWN, getpid()); //3.告知驱动程序app进程ID
flag = fcntl(fd, F_GETFL); //4.获得文件状态标记
fcntl(fd, F_SETFL, flag | FASYNC); //5.设置文件状态标记(将进程添加到驱动fasync事件等待队列)
while(1)
{
printf("count = %d\n", count++);
sleep(2);
}
return 0;
}
[root@imx6ull:/mnt]# ./get_input_info /dev/input/event1
count = 0
count = 1
count = 2 //无输入事件时正常计数
type = 0x3, code = 0x39, value = 0x6
type = 0x3, code = 0x35, value = 0x1a6
type = 0x3, code = 0x36, value = 0x131
type = 0x3, code = 0x30, value = 0x1f
type = 0x3, code = 0x3a, value = 0x1f
type = 0x1, code = 0x14a, value = 0x1
type = 0x0, code = 0x0, value = 0x0
count = 3
type = 0x3, code = 0x35, value = 0x1a7
type = 0x0, code = 0x0, value = 0x0
count = 4
type = 0x3, code = 0x35, value = 0x1a9
type = 0x0, code = 0x0, value = 0x0
count = 5
type = 0x3, code = 0x35, value = 0x1a8
type = 0x0, code = 0x0, value = 0x0
count = 6
最后此篇关于嵌入式Linux—输入子系统的文章就讲到这里了,如果你想了解更多关于嵌入式Linux—输入子系统的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。
你怎么能管理这样的事情?我尽我最大的努力将子系统设计为可重用,但只有某些特定于站点的东西必须自定义(例如 Account 实体中的字段,或 orm 注释中的 cfc="")。 我曾想过使用 SVN 并
我正在编写 native 模式应用程序(想想: link /subsystem:native )。这意味着我不能使用 kernel32.dll 中的任何内容,这(显然)在 C 运行时库中没有任何意义。
我注意到使用 emscripten,即使是相对较小的 C++ 文件也可以快速转换为相当大的 JavaScript 文件。示例: #include int main(int argc, char**
在恢复模式下运行标准 Windows 7 安装盘时,如果您打开命令行并运行自定义构建的应用程序,您将收到错误“不支持子系统”。我试过与/SUBSYSTEM:CONSOLE、WINDOWS 和 NATI
我有一个生成一些报告并在 GUI 中显示相同内容的 MFC 应用程序。当使用某些命令行参数传递时,我需要将它作为控制台应用程序运行。在控制台模式下,它将在标准输出/错误中生成报告/错误,我应该能够将其
本文讲解 pinctrl 子系统和 gpio 子系统的 API,以及使用示例。 传统的配置 pin 的方式就是直接操作相应的寄存器,但是这种配置方式比较繁琐、而且容易出问题(比如 pin 功能
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 我们不允许提问寻求书籍、工具、软件库等的推荐。您可以编辑问题,以便用事实和引用来回答。 关闭 8 年前。
Windows Vista Enterprise 和 Ultimate 的要点功能之一是 Windows 的 Unix 子系统,它允许您编写 posix... 东西?不管怎样,我不喜欢谈论它……有人使
我在 Windows 10 上的 WSL 中使用 Ubuntu,并且我在 WSL 中安装了 git 并定期使用它。我有一个非常烦人的问题,我尝试缓存我的 github 凭据,因此我不必在提交时不断输入
我正在使用旧的 bcc32 (borland 5.5)(我知道这很旧编译器但不要告诉我我不应该使用它) 我可以使用控制台或 Windows 子系统进行编译。 我不想用 windows 子系统编译,我想
设置: 榛子:3.12.3 Spring 启动:2.1.6 Java:1.8 参数:-XX:+UseG1GC Xms7g -Xmx7g 这些正在 Docker 中运行:openjdk:8 它们在专用
我曾经在 Windows 10 的 Linux 子系统上通过 bash 控制台通过 ssh 连接到我的服务器。 我重新安装了 Windows,并将 id_rsa、id_rsa.pub 和 known_
我目前在我的 C 代码中使用 inotify() 系统来监视文件系统中某些目录的事件。 现在,使用这些东西之一的过程如下。你取一个整数(比如 event_notifier),使用 inotify_in
安装 WSL 1. 开启WSL 必须启用“适用于 Linux 的 Windows 子系统”可选功能并重启,然后才能在 Windows 上运行 Linux 发行版。 以管理员运行Powershell(开
我正在学习如何使用 https://intermezzos.github.io 构建基本的操作系统内核 我已经创建了我的 .iso文件,我正在运行 qemu-system-x86_64 -cdrom
不久前我使用 crontab -e 设置了一些 cronjobs .我的 crontab 包括以下行: * * * * * /usr/bin/touch /home/blah/MADEBYCRON 我
我已经安装了 visual studio 2008 Professional Edition,但我无法在其中一个 visual C++ 项目中设置/SUBSYSTEM:POSIX 选项。我还从 SUA
基本上,我需要一个程序来将 Windows .exe 从控制台对应项中排序。 文件扫描器: SortExe(file exe) { if (IsPeWindows(exe)) {
我有一个 python 脚本,我想在计算机的剪贴板中放置一个字符串。我在 Linux、Mac 和以前使用 cygwin 在 Windows 中工作。我不得不修改一行代码以使其在各自的系统中工作。我无法
最近发布了 Windows 10 周年更新的新更新,包括 Linux 子系统 based on Ubuntu 14.04而现在我希望我所有的工作环境都在这个 Linux 子系统中。 我尝试按照官方网站
我是一名优秀的程序员,十分优秀!