Android 中多点触摸协议
http://blog.csdn.net/zuosifengli/article/details/7398661
Android 中多点触摸协议:
参考: http://www.kernel.org/doc/Documentation/input/multi-touch-protocol.txt
1, 两种多点触摸协议:
1)A类: 处理无关联的接触: 用于直接发送原始数据;
B类: 处理跟踪识别类的接触: 通过事件slot发送相关联的独立接触更新。
2, 触摸协议的使用:
A类协议:
A类协议在每发送完一个接触数据包后会调用 input_mt_sync() 声明 一次数据的结束; input_mt_sync() 会发出一个 SYN_MT_REPORT
提示接收器接收数据并准备下一次数据的接收。
B类协议:
与A类协议不同的是, B类在使用input_mt_slot()的时候会带有一个slot的参数,在每个数据包开始时 产生一个ABS_MT_SLOT事件,提示接收器更新数据。
最终A,B类协议均会调用 input_sync();
A类与B类协议不同的在于: B类协议 通过B类协议 slot 协议需要是用到ABS_MT_TRACKING_ID------ 可以从硬件上获取,或者从原始数据中计算。
3, B类协议: ABS_MT_TRACKING_ID 表示一次接触; -1 代表一个不用的slot;
使用参考例子:
释放事件:
input_mt_slot(data->input_dev, i);
input_mt_report_slot_state(data->input_dev, MT_TOOL_FINGER, false); ---------------释放
点击事件:
input_mt_slot(data->input_dev, i);
input_mt_report_slot_state(data->input_dev, MT_TOOL_FINGER, true);
input_report_abs(data->input_dev, ABS_MT_TOUCH_MAJOR, 1);
input_report_abs(data->input_dev, ABS_MT_POSITION_X, current_events[i].x);
input_report_abs(data->input_dev, ABS_MT_POSITION_Y, current_events[i].y)
补充: 不同事件的标记: 备忘。
ABS_MT_TOUCH_MAJOR
The length of the major axis of the contact. The length
should be given insurface units. If the surface has an X times Y
resolution, the largestpossible value of ABS_MT_TOUCH_MAJOR is sqrt(X^2 +
Y^2), the diagonal [4].
ABS_MT_TOUCH_MINOR
The length, in surface units, of the minor axis of the
contact. If thecontact is circular, this event can be omitted [4].
ABS_MT_WIDTH_MAJOR
The length, in surface units, of the major axis of the
approachingtool. This should be understood as the size of the tool
itself. Theorientation of the contact and the approaching tool are
assumed to be thesame [4].
ABS_MT_WIDTH_MINOR
The length, in surface units, of the minor axis of the
approachingtool. Omit if circular [4].The above four values can be used
to derive additional information aboutthe contact. The ratio
ABS_MT_TOUCH_MAJOR / ABS_MT_WIDTH_MAJOR approximatesthe
notion of pressure. The fingers of the hand and the palm all
havedifferent characteristic widths [1].
ABS_MT_PRESSURE
The pressure, in arbitrary units, on the contact area.
May be used insteadof TOUCH and WIDTH for pressure-based devices or any
device with a spatialsignal intensity distribution.
ABS_MT_DISTANCE
The distance, in surface units, between the contact and
the surface. Zerodistance means the contact is touching the surface. A
positive number meansthe contact is hovering above the surface.
ABS_MT_ORIENTATION
The orientation of the ellipse. The value should describe a
signed quarterof a revolution clockwise around the touch center. The
signed value rangeis arbitrary, but zero should be returned for a finger
aligned along the Yaxis of the surface, a
negative value when finger is turned to the left, anda positive value
when finger turned to the right. When completely aligned withthe X axis,
the range max should be returned. Orientation can be omittedif the
touching object is circular, or if the information
is not availablein the kernel driver. Partial orientation support is
possible if the devicecan distinguish between the two axis, but not
(uniquely) any values inbetween. In such cases, the range of
ABS_MT_ORIENTATION should be [0, 1][4].
ABS_MT_POSITION_X
The surface X coordinate of the center of the touching
ellipse.ABS_MT_POSITION_YThe surface Y coordinate of the center of the
touching ellipse.
ABS_MT_TOOL_TYPE
The type of approaching tool. A lot of kernel drivers
cannot distinguishbetween different tool types, such as a finger or a
pen. In such cases, theevent should be omitted. The protocol currently
supports MT_TOOL_FINGER andMT_TOOL_PEN [2]. For
type B devices, this event is handled by input core;drivers should
instead use input_mt_report_slot_state().
ABS_MT_BLOB_ID
The BLOB_ID groups several packets together into one
arbitrarily shapedcontact. The sequence of points forms a polygon which
defines the shape ofthe contact. This is a low-level anonymous grouping
for type A devices, andshould not be confused
with the high-level trackingID [5]. Most type Adevices do not have blob
capability, so drivers can safely omit this event.
ABS_MT_TRACKING_ID
The TRACKING_ID identifies an initiated contact throughout
its life cycle[5]. The value range of the TRACKING_ID should be large
enough to ensureunique identification of a contact maintained over an
extended period oftime. For type B devices,
this event is handled by input core; driversshould instead use
input_mt_report_slot_state().
Android 中多点触摸协议的更多相关文章
- Linux/Android多点触摸协议
链接点击打开链接 关于Linux多点触摸协议大家可以参考kernel中的文档:https://www.kernel.org/doc/Documentation/input/multi-touch-pr ...
- 内核中的多点触摸协议文档 Multi【转】
转自:http://www.arm9home.net/read.php?tid=24754 前段时间改写了一个GT801的内核驱动,仔细阅读 MT Event 上报的时候,发现这个驱动是针对 Andr ...
- Linux与Android 多点触摸协议【转】
本文转载自:http://blog.csdn.net/xubin341719/article/details/7833277 一.Linux与Android 多点触摸协议 为了使用功能强大的多点触控设 ...
- Linux & Android 多点触摸协议
Linux & Android 多点触摸协议 Android4.0多点触摸入门 1 KERNEL 对于触摸屏的驱动我们简单的划分为两个主要的部分,一个是注册,另一个是上报. 1.1 注册 单点 ...
- Linux/Android多点触摸协议【转】
本文转载自: 链接点击打开链接 关于Linux多点触摸协议大家可以参考kernel中的文档:https://www.kernel.org/doc/Documentation/input/multi-t ...
- CTP多点触摸协议【转】
转自:http://blog.chinaunix.net/uid-26403844-id-5063920.html linux kernel 2.6.30开始对多点触摸支持,最近高通要求所有CTP器件 ...
- 毫无保留开源我写的:IOS Android Ipad 多点触摸通用js 库
毫无保留开源我写的:IOS Android Ipad 多点触摸通用js 库 在线演示地址: http://m.yunxunmi.com/ 支持 IOS Android Ipad 等不同操作系统的手持或 ...
- Linux Android 多点触摸协议 原文出自【比特网】,转载请保留原文链接:http://soft.chinabyte.com/os/71/12306571.shtml
为了使用功能强大的多点触控设备,就需要一种方案去上报用户层所需的详细的手指触摸数据.这个文档所描述的多点触控协议可以让内核驱动程序向用户层上报任意多指的数据信息. 使用说明 单点触摸信息是以ABS承载 ...
- Android中使用http协议访问网络
HTTP协议的工作原理:客户端向服务器端发送http请求,服务器端收到请求后返回一下数据给客户端,客户端接受消息并进行解析. 在Android中发送http请求的方式有两种,第一种是通过HttpURL ...
随机推荐
- 9.css背景
这节也是关于盒模型的扩展,而我个人喜欢把盒模型想象成图画.元素的尺寸调整就是画布大小的调整,边框的设置就是画框的镶嵌.但是,作为一个最终要将画作展现到美术馆(网页)的艺术家来说,仅仅是这样还是不够的, ...
- .NET开源工作流RoadFlow-表单设计-新建表单(属性设置)
点击表单设计工具栏上的 新建表单 按钮会弹出新表单属性设置框: 表单名称:新表单表名称. 数据连接:表单对应的数据库连接(此连接在 系统管理-->数据库连接 中维护). 数据表:表单对应的数据库 ...
- hdu 2094 产生冠军
题目连接 http://acm.hdu.edu.cn/showproblem.php?pid=2094 产生冠军 Description 有一群人,打乒乓球比赛,两两捉对撕杀,每两个人之间最多打一场比 ...
- editplus文本编辑器
EditPlus中文破解版是一款功能强大的文本编辑器,拥有无限制的撤消与重做.英文拼字检查.自动换行.列数标记.搜寻取代.同时编辑多文件.全屏幕浏览功能.还有一个好用的功能,就是它有监视剪贴板的功能, ...
- EF6 在原有数据库中使用 CodeFirst 总复习(四、新建实体对象)
在原有数据库中使用 CodeFirst ,除了第一次添加实体后要立即执行一次 Enable-Migrations add-migration Initial -IgnoreChanges updat ...
- 30.DDR2问题2_local_init_done为什么没拉高?
按照初始化时序,在200us时,mem_clk时钟稳定,开始初始化设置,设置完后,会产生一个初始化完成标志,local_init_done会拉高,没有拉高,可能有以下几个原因: 1.确认DDR2 IP ...
- java判断某个字符串包含某个字符串的个数
/** * 判断str1中包含str2的个数 * @param str1 * @param str2 * @return counter */ public static int countStr(S ...
- 给Eclipse提速的7个技巧(转)
本文由 ImportNew - 孙 波翔 翻译自 nicolasbize.欢迎加入翻译小组.转载请参见文章末尾的要求. 大约一个月前,我发表了一篇博客,其中介绍了对Eclipse的爱与恨. 有些人问我 ...
- SQLite数据库的基本API函数
1 .打开数据库: 说明:打开一个数据库,文件名不一定要存在,如果此文件不存在, sqlite 会自动创建.第一个参数指文件名,第二个参数则是定义的 sqlite3 ** 结构体指针(关键数据结构), ...
- 启动级别:init 0,1,2,3,4,5,6
这是个很久的知识点了,只是自己一直都迷迷糊糊的,今天在翻出来好好理解下.. 0:停机 1:单用户形式,只root进行维护 2:多用户,不能使用net file system 3:完全多用户 5:图形化 ...