forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Input: ntrig - convert documentation into ReST format
This file require minimum adjustments to be a valid ReST file. Do it, in order to be able to parse it with Sphinx. Signed-off-by: Mauro Carvalho Chehab <[email protected]> Signed-off-by: Dmitry Torokhov <[email protected]>
- Loading branch information
Showing
1 changed file
with
30 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,11 @@ | ||
.. include:: <isonum.txt> | ||
|
||
========================= | ||
N-Trig touchscreen Driver | ||
------------------------- | ||
Copyright (c) 2008-2010 Rafi Rubin <[email protected]> | ||
Copyright (c) 2009-2010 Stephane Chatty | ||
========================= | ||
|
||
:Copyright: |copy| 2008-2010 Rafi Rubin <[email protected]> | ||
:Copyright: |copy| 2009-2010 Stephane Chatty | ||
|
||
This driver provides support for N-Trig pen and multi-touch sensors. Single | ||
and multi-touch events are translated to the appropriate protocols for | ||
|
@@ -22,16 +26,18 @@ but only for that one device. | |
|
||
The following parameters are used to configure filters to reduce noise: | ||
|
||
activate_slack number of fingers to ignore before processing events | ||
|
||
activation_height size threshold to activate immediately | ||
activation_width | ||
|
||
min_height size threshold bellow which fingers are ignored | ||
min_width both to decide activation and during activity | ||
|
||
deactivate_slack the number of "no contact" frames to ignore before | ||
propagating the end of activity events | ||
+-----------------------+-----------------------------------------------------+ | ||
|activate_slack |number of fingers to ignore before processing events | | ||
+-----------------------+-----------------------------------------------------+ | ||
|activation_height, |size threshold to activate immediately | | ||
|activation_width | | | ||
+-----------------------+-----------------------------------------------------+ | ||
|min_height, |size threshold bellow which fingers are ignored | | ||
|min_width |both to decide activation and during activity | | ||
+-----------------------+-----------------------------------------------------+ | ||
|deactivate_slack |the number of "no contact" frames to ignore before | | ||
| |propagating the end of activity events | | ||
+-----------------------+-----------------------------------------------------+ | ||
|
||
When the last finger is removed from the device, it sends a number of empty | ||
frames. By holding off on deactivation for a few frames we can tolerate false | ||
|
@@ -44,15 +50,20 @@ Additional sysfs items | |
---------------------- | ||
|
||
These nodes just provide easy access to the ranges reported by the device. | ||
sensor_logical_height the range for positions reported during activity | ||
sensor_logical_width | ||
|
||
sensor_physical_height internal ranges not used for normal events but | ||
sensor_physical_width useful for tuning | ||
+-----------------------+-----------------------------------------------------+ | ||
|sensor_logical_height, | the range for positions reported during activity | | ||
|sensor_logical_width | | | ||
+-----------------------+-----------------------------------------------------+ | ||
|sensor_physical_height,| internal ranges not used for normal events but | | ||
|sensor_physical_width | useful for tuning | | ||
+-----------------------+-----------------------------------------------------+ | ||
|
||
All N-Trig devices with product id of 1 report events in the ranges of | ||
X: 0-9600 | ||
Y: 0-7200 | ||
|
||
* X: 0-9600 | ||
* Y: 0-7200 | ||
|
||
However not all of these devices have the same physical dimensions. Most | ||
seem to be 12" sensors (Dell Latitude XT and XT2 and the HP TX2), and | ||
at least one model (Dell Studio 17) has a 17" sensor. The ratio of physical | ||
|