fusuma-plugin-tap 0.4.0 → 0.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/fusuma-plugin-tap.gemspec +2 -4
- data/lib/fusuma/plugin/tap/version.rb +1 -1
- data/spec/fusuma/plugin/buffers/tap_buffer_spec.rb +164 -0
- data/spec/fusuma/plugin/detectors/tap_detector_spec.rb +169 -0
- data/spec/fusuma/plugin/parsers/1.10.4/1finger-double-tap.txt +15 -0
- data/spec/fusuma/plugin/parsers/1.10.4/1finger-hold.txt +6 -0
- data/spec/fusuma/plugin/parsers/1.10.4/1finger-tap.txt +8 -0
- data/spec/fusuma/plugin/parsers/1.10.4/2finger-hold-invalid.txt +259 -0
- data/spec/fusuma/plugin/parsers/1.10.4/2finger-hold.txt +116 -0
- data/spec/fusuma/plugin/parsers/1.10.4/2finger-pinch-and-hold-bug.txt +356 -0
- data/spec/fusuma/plugin/parsers/1.10.4/2finger-tap.txt +12 -0
- data/spec/fusuma/plugin/parsers/1.10.4/3finger-hold-invalid.txt +241 -0
- data/spec/fusuma/plugin/parsers/1.10.4/3finger-hold.txt +162 -0
- data/spec/fusuma/plugin/parsers/1.10.4/3finger-tap.txt +32 -0
- data/spec/fusuma/plugin/parsers/1.10.4/4finger-hold-invalid.txt +262 -0
- data/spec/fusuma/plugin/parsers/1.10.4/4finger-hold.txt +686 -0
- data/spec/fusuma/plugin/parsers/1.10.4/4finger-tap-after-palm-detected-bug.txt +27 -0
- data/spec/fusuma/plugin/parsers/1.10.4/4finger-tap.txt +34 -0
- data/spec/fusuma/plugin/parsers/1.14.1/1finger-double-tap.txt +13 -0
- data/spec/fusuma/plugin/parsers/1.14.1/1finger-hold.txt +5 -0
- data/spec/fusuma/plugin/parsers/1.14.1/1finger-tap.txt +7 -0
- data/spec/fusuma/plugin/parsers/1.14.1/2finger-hold-invalid.txt +137 -0
- data/spec/fusuma/plugin/parsers/1.14.1/2finger-hold.txt +10 -0
- data/spec/fusuma/plugin/parsers/1.14.1/2finger-pinch-and-hold-bug.txt +32 -0
- data/spec/fusuma/plugin/parsers/1.14.1/2finger-tap.txt +10 -0
- data/spec/fusuma/plugin/parsers/1.14.1/3finger-hold-invalid.txt +173 -0
- data/spec/fusuma/plugin/parsers/1.14.1/3finger-hold.txt +15 -0
- data/spec/fusuma/plugin/parsers/1.14.1/3finger-tap.txt +16 -0
- data/spec/fusuma/plugin/parsers/1.14.1/4finger-hold-invalid.txt +158 -0
- data/spec/fusuma/plugin/parsers/1.14.1/4finger-hold.txt +9 -0
- data/spec/fusuma/plugin/parsers/1.14.1/4finger-tap-after-palm-detected-bug.txt +20 -0
- data/spec/fusuma/plugin/parsers/1.14.1/4finger-tap.txt +17 -0
- data/spec/fusuma/plugin/parsers/1.15.5/1finger-double-tap.txt +13 -0
- data/spec/fusuma/plugin/parsers/1.15.5/1finger-hold.txt +5 -0
- data/spec/fusuma/plugin/parsers/1.15.5/1finger-tap.txt +7 -0
- data/spec/fusuma/plugin/parsers/1.15.5/2finger-hold-invalid.txt +139 -0
- data/spec/fusuma/plugin/parsers/1.15.5/2finger-hold.txt +10 -0
- data/spec/fusuma/plugin/parsers/1.15.5/2finger-pinch-and-hold-bug.txt +48 -0
- data/spec/fusuma/plugin/parsers/1.15.5/2finger-tap.txt +10 -0
- data/spec/fusuma/plugin/parsers/1.15.5/3finger-hold-invalid.txt +172 -0
- data/spec/fusuma/plugin/parsers/1.15.5/3finger-hold.txt +14 -0
- data/spec/fusuma/plugin/parsers/1.15.5/3finger-tap.txt +15 -0
- data/spec/fusuma/plugin/parsers/1.15.5/4finger-hold-invalid.txt +158 -0
- data/spec/fusuma/plugin/parsers/1.15.5/4finger-hold.txt +15 -0
- data/spec/fusuma/plugin/parsers/1.15.5/4finger-tap-after-palm-detected-bug.txt +20 -0
- data/spec/fusuma/plugin/parsers/1.15.5/4finger-tap.txt +15 -0
- data/spec/fusuma/plugin/parsers/1.16.5/1finger-double-tap.txt +13 -0
- data/spec/fusuma/plugin/parsers/1.16.5/1finger-hold.txt +5 -0
- data/spec/fusuma/plugin/parsers/1.16.5/1finger-tap.txt +7 -0
- data/spec/fusuma/plugin/parsers/1.16.5/2finger-hold-invalid.txt +142 -0
- data/spec/fusuma/plugin/parsers/1.16.5/2finger-hold.txt +10 -0
- data/spec/fusuma/plugin/parsers/1.16.5/2finger-pinch-and-hold-bug.txt +48 -0
- data/spec/fusuma/plugin/parsers/1.16.5/2finger-tap.txt +10 -0
- data/spec/fusuma/plugin/parsers/1.16.5/3finger-hold-invalid.txt +172 -0
- data/spec/fusuma/plugin/parsers/1.16.5/3finger-hold.txt +14 -0
- data/spec/fusuma/plugin/parsers/1.16.5/3finger-tap.txt +15 -0
- data/spec/fusuma/plugin/parsers/1.16.5/4finger-hold-invalid.txt +159 -0
- data/spec/fusuma/plugin/parsers/1.16.5/4finger-hold.txt +15 -0
- data/spec/fusuma/plugin/parsers/1.16.5/4finger-tap-after-palm-detected-bug.txt +20 -0
- data/spec/fusuma/plugin/parsers/1.16.5/4finger-tap.txt +15 -0
- data/spec/fusuma/plugin/parsers/evemu/1finger-double-tap.txt +190 -0
- data/spec/fusuma/plugin/parsers/evemu/1finger-hold.txt +646 -0
- data/spec/fusuma/plugin/parsers/evemu/1finger-tap.txt +156 -0
- data/spec/fusuma/plugin/parsers/evemu/2finger-hold-invalid.txt +1789 -0
- data/spec/fusuma/plugin/parsers/evemu/2finger-hold.txt +426 -0
- data/spec/fusuma/plugin/parsers/evemu/2finger-pinch-and-hold-bug.txt +925 -0
- data/spec/fusuma/plugin/parsers/evemu/2finger-tap.txt +164 -0
- data/spec/fusuma/plugin/parsers/evemu/3finger-hold-invalid.txt +2129 -0
- data/spec/fusuma/plugin/parsers/evemu/3finger-hold.txt +471 -0
- data/spec/fusuma/plugin/parsers/evemu/3finger-tap.txt +169 -0
- data/spec/fusuma/plugin/parsers/evemu/4finger-hold-invalid.txt +2374 -0
- data/spec/fusuma/plugin/parsers/evemu/4finger-hold.txt +575 -0
- data/spec/fusuma/plugin/parsers/evemu/4finger-tap-after-palm-detected-bug.txt +250 -0
- data/spec/fusuma/plugin/parsers/evemu/4finger-tap.txt +206 -0
- data/spec/fusuma/plugin/parsers/tap_parser_spec.rb +200 -0
- data/spec/fusuma/plugin/tap_spec.rb +9 -0
- data/spec/helpers/config_helper.rb +16 -0
- data/spec/spec_helper.rb +18 -0
- metadata +155 -13
- data/.gitignore +0 -15
- data/.rspec +0 -3
- data/.rubocop.yml +0 -31
- data/.rubocop_todo.yml +0 -56
- data/.travis.yml +0 -23
- data/CHANGELOG.md +0 -65
- data/CODE_OF_CONDUCT.md +0 -74
- data/Gemfile +0 -6
- data/Makefile +0 -25
- data/Rakefile +0 -15
@@ -0,0 +1,250 @@
|
|
1
|
+
# EVEMU 1.3
|
2
|
+
# Kernel: 5.3.0-61-generic
|
3
|
+
# DMI: dmi:bvnDellInc.:bvr2.13.0:bd11/14/2019:svnDellInc.:pnXPS139360:pvr:rvnDellInc.:rn0115N5:rvrA00:cvnDellInc.:ct9:cvr:
|
4
|
+
# Input device name: "DLL075B:01 06CB:76AF Touchpad"
|
5
|
+
# Input device ID: bus 0x18 vendor 0x6cb product 0x76af version 0x100
|
6
|
+
# Size in mm: 101x56
|
7
|
+
# Supported events:
|
8
|
+
# Event type 0 (EV_SYN)
|
9
|
+
# Event code 0 (SYN_REPORT)
|
10
|
+
# Event code 1 (SYN_CONFIG)
|
11
|
+
# Event code 2 (SYN_MT_REPORT)
|
12
|
+
# Event code 3 (SYN_DROPPED)
|
13
|
+
# Event code 4 ((null))
|
14
|
+
# Event code 5 ((null))
|
15
|
+
# Event code 6 ((null))
|
16
|
+
# Event code 7 ((null))
|
17
|
+
# Event code 8 ((null))
|
18
|
+
# Event code 9 ((null))
|
19
|
+
# Event code 10 ((null))
|
20
|
+
# Event code 11 ((null))
|
21
|
+
# Event code 12 ((null))
|
22
|
+
# Event code 13 ((null))
|
23
|
+
# Event code 14 ((null))
|
24
|
+
# Event code 15 (SYN_MAX)
|
25
|
+
# Event type 1 (EV_KEY)
|
26
|
+
# Event code 272 (BTN_LEFT)
|
27
|
+
# Event code 325 (BTN_TOOL_FINGER)
|
28
|
+
# Event code 328 (BTN_TOOL_QUINTTAP)
|
29
|
+
# Event code 330 (BTN_TOUCH)
|
30
|
+
# Event code 333 (BTN_TOOL_DOUBLETAP)
|
31
|
+
# Event code 334 (BTN_TOOL_TRIPLETAP)
|
32
|
+
# Event code 335 (BTN_TOOL_QUADTAP)
|
33
|
+
# Event type 3 (EV_ABS)
|
34
|
+
# Event code 0 (ABS_X)
|
35
|
+
# Value 0
|
36
|
+
# Min 0
|
37
|
+
# Max 1216
|
38
|
+
# Fuzz 0
|
39
|
+
# Flat 0
|
40
|
+
# Resolution 12
|
41
|
+
# Event code 1 (ABS_Y)
|
42
|
+
# Value 294
|
43
|
+
# Min 0
|
44
|
+
# Max 680
|
45
|
+
# Fuzz 0
|
46
|
+
# Flat 0
|
47
|
+
# Resolution 12
|
48
|
+
# Event code 47 (ABS_MT_SLOT)
|
49
|
+
# Value 0
|
50
|
+
# Min 0
|
51
|
+
# Max 4
|
52
|
+
# Fuzz 0
|
53
|
+
# Flat 0
|
54
|
+
# Resolution 0
|
55
|
+
# Event code 53 (ABS_MT_POSITION_X)
|
56
|
+
# Value 0
|
57
|
+
# Min 0
|
58
|
+
# Max 1216
|
59
|
+
# Fuzz 0
|
60
|
+
# Flat 0
|
61
|
+
# Resolution 12
|
62
|
+
# Event code 54 (ABS_MT_POSITION_Y)
|
63
|
+
# Value 0
|
64
|
+
# Min 0
|
65
|
+
# Max 680
|
66
|
+
# Fuzz 0
|
67
|
+
# Flat 0
|
68
|
+
# Resolution 12
|
69
|
+
# Event code 55 (ABS_MT_TOOL_TYPE)
|
70
|
+
# Value 0
|
71
|
+
# Min 0
|
72
|
+
# Max 2
|
73
|
+
# Fuzz 0
|
74
|
+
# Flat 0
|
75
|
+
# Resolution 0
|
76
|
+
# Event code 57 (ABS_MT_TRACKING_ID)
|
77
|
+
# Value 0
|
78
|
+
# Min 0
|
79
|
+
# Max 65535
|
80
|
+
# Fuzz 0
|
81
|
+
# Flat 0
|
82
|
+
# Resolution 0
|
83
|
+
# Event type 4 (EV_MSC)
|
84
|
+
# Event code 5 (MSC_TIMESTAMP)
|
85
|
+
# Properties:
|
86
|
+
# Property type 0 (INPUT_PROP_POINTER)
|
87
|
+
# Property type 2 (INPUT_PROP_BUTTONPAD)
|
88
|
+
N: DLL075B:01 06CB:76AF Touchpad
|
89
|
+
I: 0018 06cb 76af 0100
|
90
|
+
P: 05 00 00 00 00 00 00 00
|
91
|
+
B: 00 0b 00 00 00 00 00 00 00
|
92
|
+
B: 01 00 00 00 00 00 00 00 00
|
93
|
+
B: 01 00 00 00 00 00 00 00 00
|
94
|
+
B: 01 00 00 00 00 00 00 00 00
|
95
|
+
B: 01 00 00 00 00 00 00 00 00
|
96
|
+
B: 01 00 00 01 00 00 00 00 00
|
97
|
+
B: 01 20 e5 00 00 00 00 00 00
|
98
|
+
B: 01 00 00 00 00 00 00 00 00
|
99
|
+
B: 01 00 00 00 00 00 00 00 00
|
100
|
+
B: 01 00 00 00 00 00 00 00 00
|
101
|
+
B: 01 00 00 00 00 00 00 00 00
|
102
|
+
B: 01 00 00 00 00 00 00 00 00
|
103
|
+
B: 01 00 00 00 00 00 00 00 00
|
104
|
+
B: 02 00 00 00 00 00 00 00 00
|
105
|
+
B: 03 03 00 00 00 00 80 e0 02
|
106
|
+
B: 04 20 00 00 00 00 00 00 00
|
107
|
+
B: 05 00 00 00 00 00 00 00 00
|
108
|
+
B: 11 00 00 00 00 00 00 00 00
|
109
|
+
B: 12 00 00 00 00 00 00 00 00
|
110
|
+
B: 14 00 00 00 00 00 00 00 00
|
111
|
+
B: 15 00 00 00 00 00 00 00 00
|
112
|
+
B: 15 00 00 00 00 00 00 00 00
|
113
|
+
A: 00 0 1216 0 0 12
|
114
|
+
A: 01 0 680 0 0 12
|
115
|
+
A: 2f 0 4 0 0 0
|
116
|
+
A: 35 0 1216 0 0 12
|
117
|
+
A: 36 0 680 0 0 12
|
118
|
+
A: 37 0 2 0 0 0
|
119
|
+
A: 39 0 65535 0 0 0
|
120
|
+
################################
|
121
|
+
# Waiting for events #
|
122
|
+
################################
|
123
|
+
E: 0.000001 0003 0039 37243 # EV_ABS / ABS_MT_TRACKING_ID 37243
|
124
|
+
E: 0.000001 0003 0037 0002 # EV_ABS / ABS_MT_TOOL_TYPE 2
|
125
|
+
E: 0.000001 0003 0035 0915 # EV_ABS / ABS_MT_POSITION_X 915
|
126
|
+
E: 0.000001 0003 0036 0247 # EV_ABS / ABS_MT_POSITION_Y 247
|
127
|
+
E: 0.000001 0001 014a 0001 # EV_KEY / BTN_TOUCH 1
|
128
|
+
E: 0.000001 0001 0145 0001 # EV_KEY / BTN_TOOL_FINGER 1
|
129
|
+
E: 0.000001 0003 0000 0915 # EV_ABS / ABS_X 915
|
130
|
+
E: 0.000001 0003 0001 0247 # EV_ABS / ABS_Y 247
|
131
|
+
E: 0.000001 0004 0005 0000 # EV_MSC / MSC_TIMESTAMP 0
|
132
|
+
E: 0.000001 0000 0000 0000 # ------------ SYN_REPORT (0) ---------- +0ms
|
133
|
+
E: 0.005387 0004 0005 7100 # EV_MSC / MSC_TIMESTAMP 7100
|
134
|
+
E: 0.005387 0000 0000 0000 # ------------ SYN_REPORT (0) ---------- +5ms
|
135
|
+
E: 0.005402 0003 0039 -001 # EV_ABS / ABS_MT_TRACKING_ID -1
|
136
|
+
E: 0.005402 0001 014a 0000 # EV_KEY / BTN_TOUCH 0
|
137
|
+
E: 0.005402 0001 0145 0000 # EV_KEY / BTN_TOOL_FINGER 0
|
138
|
+
E: 0.005402 0000 0000 0000 # ------------ SYN_REPORT (0) ---------- +0ms
|
139
|
+
E: 0.921806 0003 0039 37244 # EV_ABS / ABS_MT_TRACKING_ID 37244
|
140
|
+
E: 0.921806 0003 0037 0000 # EV_ABS / ABS_MT_TOOL_TYPE 0
|
141
|
+
E: 0.921806 0003 0035 0957 # EV_ABS / ABS_MT_POSITION_X 957
|
142
|
+
E: 0.921806 0003 0036 0264 # EV_ABS / ABS_MT_POSITION_Y 264
|
143
|
+
E: 0.921806 0001 014a 0001 # EV_KEY / BTN_TOUCH 1
|
144
|
+
E: 0.921806 0001 0145 0001 # EV_KEY / BTN_TOOL_FINGER 1
|
145
|
+
E: 0.921806 0003 0000 0957 # EV_ABS / ABS_X 957
|
146
|
+
E: 0.921806 0003 0001 0264 # EV_ABS / ABS_Y 264
|
147
|
+
E: 0.921806 0004 0005 931700 # EV_MSC / MSC_TIMESTAMP 931700
|
148
|
+
E: 0.921806 0000 0000 0000 # ------------ SYN_REPORT (0) ---------- +916ms
|
149
|
+
E: 0.930578 0003 002f 0001 # EV_ABS / ABS_MT_SLOT 1
|
150
|
+
E: 0.930578 0003 0039 37245 # EV_ABS / ABS_MT_TRACKING_ID 37245
|
151
|
+
E: 0.930578 0003 0035 0476 # EV_ABS / ABS_MT_POSITION_X 476
|
152
|
+
E: 0.930578 0003 0036 0161 # EV_ABS / ABS_MT_POSITION_Y 161
|
153
|
+
E: 0.930578 0003 002f 0002 # EV_ABS / ABS_MT_SLOT 2
|
154
|
+
E: 0.930578 0003 0039 37246 # EV_ABS / ABS_MT_TRACKING_ID 37246
|
155
|
+
E: 0.930578 0003 0035 0276 # EV_ABS / ABS_MT_POSITION_X 276
|
156
|
+
E: 0.930578 0003 0036 0272 # EV_ABS / ABS_MT_POSITION_Y 272
|
157
|
+
E: 0.930578 0003 002f 0003 # EV_ABS / ABS_MT_SLOT 3
|
158
|
+
E: 0.930578 0003 0039 37247 # EV_ABS / ABS_MT_TRACKING_ID 37247
|
159
|
+
E: 0.930578 0003 0035 0693 # EV_ABS / ABS_MT_POSITION_X 693
|
160
|
+
E: 0.930578 0003 0036 0134 # EV_ABS / ABS_MT_POSITION_Y 134
|
161
|
+
E: 0.930578 0001 0145 0000 # EV_KEY / BTN_TOOL_FINGER 0
|
162
|
+
E: 0.930578 0001 014f 0001 # EV_KEY / BTN_TOOL_QUADTAP 1
|
163
|
+
E: 0.930578 0004 0005 938900 # EV_MSC / MSC_TIMESTAMP 938900
|
164
|
+
E: 0.930578 0000 0000 0000 # ------------ SYN_REPORT (0) ---------- +9ms
|
165
|
+
E: 0.938350 0003 002f 0001 # EV_ABS / ABS_MT_SLOT 1
|
166
|
+
E: 0.938350 0003 0036 0172 # EV_ABS / ABS_MT_POSITION_Y 172
|
167
|
+
E: 0.938350 0003 002f 0002 # EV_ABS / ABS_MT_SLOT 2
|
168
|
+
E: 0.938350 0003 0035 0273 # EV_ABS / ABS_MT_POSITION_X 273
|
169
|
+
E: 0.938350 0003 0036 0265 # EV_ABS / ABS_MT_POSITION_Y 265
|
170
|
+
E: 0.938350 0003 002f 0003 # EV_ABS / ABS_MT_SLOT 3
|
171
|
+
E: 0.938350 0003 0035 0698 # EV_ABS / ABS_MT_POSITION_X 698
|
172
|
+
E: 0.938350 0003 0036 0156 # EV_ABS / ABS_MT_POSITION_Y 156
|
173
|
+
E: 0.938350 0004 0005 946000 # EV_MSC / MSC_TIMESTAMP 946000
|
174
|
+
E: 0.938350 0000 0000 0000 # ------------ SYN_REPORT (0) ---------- +8ms
|
175
|
+
E: 0.945400 0003 002f 0000 # EV_ABS / ABS_MT_SLOT 0
|
176
|
+
E: 0.945400 0003 0035 0956 # EV_ABS / ABS_MT_POSITION_X 956
|
177
|
+
E: 0.945400 0003 002f 0001 # EV_ABS / ABS_MT_SLOT 1
|
178
|
+
E: 0.945400 0003 0035 0475 # EV_ABS / ABS_MT_POSITION_X 475
|
179
|
+
E: 0.945400 0003 002f 0002 # EV_ABS / ABS_MT_SLOT 2
|
180
|
+
E: 0.945400 0003 0035 0272 # EV_ABS / ABS_MT_POSITION_X 272
|
181
|
+
E: 0.945400 0003 002f 0003 # EV_ABS / ABS_MT_SLOT 3
|
182
|
+
E: 0.945400 0003 0035 0697 # EV_ABS / ABS_MT_POSITION_X 697
|
183
|
+
E: 0.945400 0003 0000 0956 # EV_ABS / ABS_X 956
|
184
|
+
E: 0.945400 0004 0005 953200 # EV_MSC / MSC_TIMESTAMP 953200
|
185
|
+
E: 0.945400 0000 0000 0000 # ------------ SYN_REPORT (0) ---------- +7ms
|
186
|
+
E: 0.952410 0003 002f 0000 # EV_ABS / ABS_MT_SLOT 0
|
187
|
+
E: 0.952410 0003 0035 0955 # EV_ABS / ABS_MT_POSITION_X 955
|
188
|
+
E: 0.952410 0003 002f 0001 # EV_ABS / ABS_MT_SLOT 1
|
189
|
+
E: 0.952410 0003 0035 0474 # EV_ABS / ABS_MT_POSITION_X 474
|
190
|
+
E: 0.952410 0003 002f 0002 # EV_ABS / ABS_MT_SLOT 2
|
191
|
+
E: 0.952410 0003 0035 0271 # EV_ABS / ABS_MT_POSITION_X 271
|
192
|
+
E: 0.952410 0003 002f 0003 # EV_ABS / ABS_MT_SLOT 3
|
193
|
+
E: 0.952410 0003 0035 0696 # EV_ABS / ABS_MT_POSITION_X 696
|
194
|
+
E: 0.952410 0003 0000 0955 # EV_ABS / ABS_X 955
|
195
|
+
E: 0.952410 0004 0005 960400 # EV_MSC / MSC_TIMESTAMP 960400
|
196
|
+
E: 0.952410 0000 0000 0000 # ------------ SYN_REPORT (0) ---------- +7ms
|
197
|
+
E: 0.959406 0003 002f 0000 # EV_ABS / ABS_MT_SLOT 0
|
198
|
+
E: 0.959406 0003 0035 0954 # EV_ABS / ABS_MT_POSITION_X 954
|
199
|
+
E: 0.959406 0003 002f 0001 # EV_ABS / ABS_MT_SLOT 1
|
200
|
+
E: 0.959406 0003 0035 0473 # EV_ABS / ABS_MT_POSITION_X 473
|
201
|
+
E: 0.959406 0003 002f 0002 # EV_ABS / ABS_MT_SLOT 2
|
202
|
+
E: 0.959406 0003 0035 0270 # EV_ABS / ABS_MT_POSITION_X 270
|
203
|
+
E: 0.959406 0003 0000 0954 # EV_ABS / ABS_X 954
|
204
|
+
E: 0.959406 0004 0005 967600 # EV_MSC / MSC_TIMESTAMP 967600
|
205
|
+
E: 0.959406 0000 0000 0000 # ------------ SYN_REPORT (0) ---------- +7ms
|
206
|
+
E: 0.965843 0003 002f 0000 # EV_ABS / ABS_MT_SLOT 0
|
207
|
+
E: 0.965843 0003 0035 0953 # EV_ABS / ABS_MT_POSITION_X 953
|
208
|
+
E: 0.965843 0003 002f 0001 # EV_ABS / ABS_MT_SLOT 1
|
209
|
+
E: 0.965843 0003 0035 0472 # EV_ABS / ABS_MT_POSITION_X 472
|
210
|
+
E: 0.965843 0003 002f 0003 # EV_ABS / ABS_MT_SLOT 3
|
211
|
+
E: 0.965843 0003 0039 -001 # EV_ABS / ABS_MT_TRACKING_ID -1
|
212
|
+
E: 0.965843 0001 014e 0001 # EV_KEY / BTN_TOOL_TRIPLETAP 1
|
213
|
+
E: 0.965843 0001 014f 0000 # EV_KEY / BTN_TOOL_QUADTAP 0
|
214
|
+
E: 0.965843 0003 0000 0953 # EV_ABS / ABS_X 953
|
215
|
+
E: 0.965843 0004 0005 974700 # EV_MSC / MSC_TIMESTAMP 974700
|
216
|
+
E: 0.965843 0000 0000 0000 # ------------ SYN_REPORT (0) ---------- +6ms
|
217
|
+
E: 0.972894 0004 0005 981800 # EV_MSC / MSC_TIMESTAMP 981800
|
218
|
+
E: 0.972894 0000 0000 0000 # ------------ SYN_REPORT (0) ---------- +7ms
|
219
|
+
E: 0.979864 0004 0005 989000 # EV_MSC / MSC_TIMESTAMP 989000
|
220
|
+
E: 0.979864 0000 0000 0000 # ------------ SYN_REPORT (0) ---------- +7ms
|
221
|
+
E: 0.986934 0003 002f 0000 # EV_ABS / ABS_MT_SLOT 0
|
222
|
+
E: 0.986934 0003 0035 0952 # EV_ABS / ABS_MT_POSITION_X 952
|
223
|
+
E: 0.986934 0003 0000 0952 # EV_ABS / ABS_X 952
|
224
|
+
E: 0.986934 0004 0005 996200 # EV_MSC / MSC_TIMESTAMP 996200
|
225
|
+
E: 0.986934 0000 0000 0000 # ------------ SYN_REPORT (0) ---------- +7ms
|
226
|
+
E: 0.993276 0003 0035 0951 # EV_ABS / ABS_MT_POSITION_X 951
|
227
|
+
E: 0.993276 0003 002f 0002 # EV_ABS / ABS_MT_SLOT 2
|
228
|
+
E: 0.993276 0003 0039 -001 # EV_ABS / ABS_MT_TRACKING_ID -1
|
229
|
+
E: 0.993276 0001 014d 0001 # EV_KEY / BTN_TOOL_DOUBLETAP 1
|
230
|
+
E: 0.993276 0001 014e 0000 # EV_KEY / BTN_TOOL_TRIPLETAP 0
|
231
|
+
E: 0.993276 0003 0000 0951 # EV_ABS / ABS_X 951
|
232
|
+
E: 0.993276 0004 0005 1003400 # EV_MSC / MSC_TIMESTAMP 1003400
|
233
|
+
E: 0.993276 0000 0000 0000 # ------------ SYN_REPORT (0) ---------- +7ms
|
234
|
+
E: 0.999951 0003 002f 0000 # EV_ABS / ABS_MT_SLOT 0
|
235
|
+
E: 0.999951 0003 0035 0950 # EV_ABS / ABS_MT_POSITION_X 950
|
236
|
+
E: 0.999951 0003 002f 0001 # EV_ABS / ABS_MT_SLOT 1
|
237
|
+
E: 0.999951 0003 0039 -001 # EV_ABS / ABS_MT_TRACKING_ID -1
|
238
|
+
E: 0.999951 0001 0145 0001 # EV_KEY / BTN_TOOL_FINGER 1
|
239
|
+
E: 0.999951 0001 014d 0000 # EV_KEY / BTN_TOOL_DOUBLETAP 0
|
240
|
+
E: 0.999951 0003 0000 0950 # EV_ABS / ABS_X 950
|
241
|
+
E: 0.999951 0004 0005 1010500 # EV_MSC / MSC_TIMESTAMP 1010500
|
242
|
+
E: 0.999951 0000 0000 0000 # ------------ SYN_REPORT (0) ---------- +6ms
|
243
|
+
E: 1.006997 0004 0005 1017600 # EV_MSC / MSC_TIMESTAMP 1017600
|
244
|
+
E: 1.006997 0000 0000 0000 # ------------ SYN_REPORT (0) ---------- +7ms
|
245
|
+
E: 1.013350 0003 002f 0000 # EV_ABS / ABS_MT_SLOT 0
|
246
|
+
E: 1.013350 0003 0039 -001 # EV_ABS / ABS_MT_TRACKING_ID -1
|
247
|
+
E: 1.013350 0001 014a 0000 # EV_KEY / BTN_TOUCH 0
|
248
|
+
E: 1.013350 0001 0145 0000 # EV_KEY / BTN_TOOL_FINGER 0
|
249
|
+
E: 1.013350 0004 0005 1024800 # EV_MSC / MSC_TIMESTAMP 1024800
|
250
|
+
E: 1.013350 0000 0000 0000 # ------------ SYN_REPORT (0) ---------- +7ms
|
@@ -0,0 +1,206 @@
|
|
1
|
+
# EVEMU 1.3
|
2
|
+
# Kernel: 5.3.0-46-generic
|
3
|
+
# DMI: dmi:bvnDellInc.:bvr2.13.0:bd11/14/2019:svnDellInc.:pnXPS139360:pvr:rvnDellInc.:rn0115N5:rvrA00:cvnDellInc.:ct9:cvr:
|
4
|
+
# Input device name: "DLL075B:01 06CB:76AF Touchpad"
|
5
|
+
# Input device ID: bus 0x18 vendor 0x6cb product 0x76af version 0x100
|
6
|
+
# Size in mm: 101x56
|
7
|
+
# Supported events:
|
8
|
+
# Event type 0 (EV_SYN)
|
9
|
+
# Event code 0 (SYN_REPORT)
|
10
|
+
# Event code 1 (SYN_CONFIG)
|
11
|
+
# Event code 2 (SYN_MT_REPORT)
|
12
|
+
# Event code 3 (SYN_DROPPED)
|
13
|
+
# Event code 4 ((null))
|
14
|
+
# Event code 5 ((null))
|
15
|
+
# Event code 6 ((null))
|
16
|
+
# Event code 7 ((null))
|
17
|
+
# Event code 8 ((null))
|
18
|
+
# Event code 9 ((null))
|
19
|
+
# Event code 10 ((null))
|
20
|
+
# Event code 11 ((null))
|
21
|
+
# Event code 12 ((null))
|
22
|
+
# Event code 13 ((null))
|
23
|
+
# Event code 14 ((null))
|
24
|
+
# Event code 15 (SYN_MAX)
|
25
|
+
# Event type 1 (EV_KEY)
|
26
|
+
# Event code 272 (BTN_LEFT)
|
27
|
+
# Event code 325 (BTN_TOOL_FINGER)
|
28
|
+
# Event code 328 (BTN_TOOL_QUINTTAP)
|
29
|
+
# Event code 330 (BTN_TOUCH)
|
30
|
+
# Event code 333 (BTN_TOOL_DOUBLETAP)
|
31
|
+
# Event code 334 (BTN_TOOL_TRIPLETAP)
|
32
|
+
# Event code 335 (BTN_TOOL_QUADTAP)
|
33
|
+
# Event type 3 (EV_ABS)
|
34
|
+
# Event code 0 (ABS_X)
|
35
|
+
# Value 1216
|
36
|
+
# Min 0
|
37
|
+
# Max 1216
|
38
|
+
# Fuzz 0
|
39
|
+
# Flat 0
|
40
|
+
# Resolution 12
|
41
|
+
# Event code 1 (ABS_Y)
|
42
|
+
# Value 372
|
43
|
+
# Min 0
|
44
|
+
# Max 680
|
45
|
+
# Fuzz 0
|
46
|
+
# Flat 0
|
47
|
+
# Resolution 12
|
48
|
+
# Event code 47 (ABS_MT_SLOT)
|
49
|
+
# Value 0
|
50
|
+
# Min 0
|
51
|
+
# Max 4
|
52
|
+
# Fuzz 0
|
53
|
+
# Flat 0
|
54
|
+
# Resolution 0
|
55
|
+
# Event code 53 (ABS_MT_POSITION_X)
|
56
|
+
# Value 0
|
57
|
+
# Min 0
|
58
|
+
# Max 1216
|
59
|
+
# Fuzz 0
|
60
|
+
# Flat 0
|
61
|
+
# Resolution 12
|
62
|
+
# Event code 54 (ABS_MT_POSITION_Y)
|
63
|
+
# Value 0
|
64
|
+
# Min 0
|
65
|
+
# Max 680
|
66
|
+
# Fuzz 0
|
67
|
+
# Flat 0
|
68
|
+
# Resolution 12
|
69
|
+
# Event code 55 (ABS_MT_TOOL_TYPE)
|
70
|
+
# Value 0
|
71
|
+
# Min 0
|
72
|
+
# Max 2
|
73
|
+
# Fuzz 0
|
74
|
+
# Flat 0
|
75
|
+
# Resolution 0
|
76
|
+
# Event code 57 (ABS_MT_TRACKING_ID)
|
77
|
+
# Value 0
|
78
|
+
# Min 0
|
79
|
+
# Max 65535
|
80
|
+
# Fuzz 0
|
81
|
+
# Flat 0
|
82
|
+
# Resolution 0
|
83
|
+
# Event type 4 (EV_MSC)
|
84
|
+
# Event code 5 (MSC_TIMESTAMP)
|
85
|
+
# Properties:
|
86
|
+
# Property type 0 (INPUT_PROP_POINTER)
|
87
|
+
# Property type 2 (INPUT_PROP_BUTTONPAD)
|
88
|
+
N: DLL075B:01 06CB:76AF Touchpad
|
89
|
+
I: 0018 06cb 76af 0100
|
90
|
+
P: 05 00 00 00 00 00 00 00
|
91
|
+
B: 00 0b 00 00 00 00 00 00 00
|
92
|
+
B: 01 00 00 00 00 00 00 00 00
|
93
|
+
B: 01 00 00 00 00 00 00 00 00
|
94
|
+
B: 01 00 00 00 00 00 00 00 00
|
95
|
+
B: 01 00 00 00 00 00 00 00 00
|
96
|
+
B: 01 00 00 01 00 00 00 00 00
|
97
|
+
B: 01 20 e5 00 00 00 00 00 00
|
98
|
+
B: 01 00 00 00 00 00 00 00 00
|
99
|
+
B: 01 00 00 00 00 00 00 00 00
|
100
|
+
B: 01 00 00 00 00 00 00 00 00
|
101
|
+
B: 01 00 00 00 00 00 00 00 00
|
102
|
+
B: 01 00 00 00 00 00 00 00 00
|
103
|
+
B: 01 00 00 00 00 00 00 00 00
|
104
|
+
B: 02 00 00 00 00 00 00 00 00
|
105
|
+
B: 03 03 00 00 00 00 80 e0 02
|
106
|
+
B: 04 20 00 00 00 00 00 00 00
|
107
|
+
B: 05 00 00 00 00 00 00 00 00
|
108
|
+
B: 11 00 00 00 00 00 00 00 00
|
109
|
+
B: 12 00 00 00 00 00 00 00 00
|
110
|
+
B: 14 00 00 00 00 00 00 00 00
|
111
|
+
B: 15 00 00 00 00 00 00 00 00
|
112
|
+
B: 15 00 00 00 00 00 00 00 00
|
113
|
+
A: 00 0 1216 0 0 12
|
114
|
+
A: 01 0 680 0 0 12
|
115
|
+
A: 2f 0 4 0 0 0
|
116
|
+
A: 35 0 1216 0 0 12
|
117
|
+
A: 36 0 680 0 0 12
|
118
|
+
A: 37 0 2 0 0 0
|
119
|
+
A: 39 0 65535 0 0 0
|
120
|
+
################################
|
121
|
+
# Waiting for events #
|
122
|
+
################################
|
123
|
+
E: 0.000001 0003 0039 14400 # EV_ABS / ABS_MT_TRACKING_ID 14400
|
124
|
+
E: 0.000001 0003 0035 0528 # EV_ABS / ABS_MT_POSITION_X 528
|
125
|
+
E: 0.000001 0003 0036 0130 # EV_ABS / ABS_MT_POSITION_Y 130
|
126
|
+
E: 0.000001 0003 002f 0001 # EV_ABS / ABS_MT_SLOT 1
|
127
|
+
E: 0.000001 0003 0039 14401 # EV_ABS / ABS_MT_TRACKING_ID 14401
|
128
|
+
E: 0.000001 0003 0035 0706 # EV_ABS / ABS_MT_POSITION_X 706
|
129
|
+
E: 0.000001 0003 0036 0115 # EV_ABS / ABS_MT_POSITION_Y 115
|
130
|
+
E: 0.000001 0001 014a 0001 # EV_KEY / BTN_TOUCH 1
|
131
|
+
E: 0.000001 0001 014d 0001 # EV_KEY / BTN_TOOL_DOUBLETAP 1
|
132
|
+
E: 0.000001 0003 0000 0528 # EV_ABS / ABS_X 528
|
133
|
+
E: 0.000001 0003 0001 0130 # EV_ABS / ABS_Y 130
|
134
|
+
E: 0.000001 0004 0005 0000 # EV_MSC / MSC_TIMESTAMP 0
|
135
|
+
E: 0.000001 0000 0000 0000 # ------------ SYN_REPORT (0) ---------- +0ms
|
136
|
+
E: 0.007572 0003 002f 0002 # EV_ABS / ABS_MT_SLOT 2
|
137
|
+
E: 0.007572 0003 0039 14402 # EV_ABS / ABS_MT_TRACKING_ID 14402
|
138
|
+
E: 0.007572 0003 0035 0313 # EV_ABS / ABS_MT_POSITION_X 313
|
139
|
+
E: 0.007572 0003 0036 0230 # EV_ABS / ABS_MT_POSITION_Y 230
|
140
|
+
E: 0.007572 0001 014d 0000 # EV_KEY / BTN_TOOL_DOUBLETAP 0
|
141
|
+
E: 0.007572 0001 014e 0001 # EV_KEY / BTN_TOOL_TRIPLETAP 1
|
142
|
+
E: 0.007572 0004 0005 7100 # EV_MSC / MSC_TIMESTAMP 7100
|
143
|
+
E: 0.007572 0000 0000 0000 # ------------ SYN_REPORT (0) ---------- +7ms
|
144
|
+
E: 0.015311 0003 002f 0003 # EV_ABS / ABS_MT_SLOT 3
|
145
|
+
E: 0.015311 0003 0039 14403 # EV_ABS / ABS_MT_TRACKING_ID 14403
|
146
|
+
E: 0.015311 0003 0035 0952 # EV_ABS / ABS_MT_POSITION_X 952
|
147
|
+
E: 0.015311 0003 0036 0180 # EV_ABS / ABS_MT_POSITION_Y 180
|
148
|
+
E: 0.015311 0001 014e 0000 # EV_KEY / BTN_TOOL_TRIPLETAP 0
|
149
|
+
E: 0.015311 0001 014f 0001 # EV_KEY / BTN_TOOL_QUADTAP 1
|
150
|
+
E: 0.015311 0004 0005 14200 # EV_MSC / MSC_TIMESTAMP 14200
|
151
|
+
E: 0.015311 0000 0000 0000 # ------------ SYN_REPORT (0) ---------- +8ms
|
152
|
+
E: 0.022517 0004 0005 21300 # EV_MSC / MSC_TIMESTAMP 21300
|
153
|
+
E: 0.022517 0000 0000 0000 # ------------ SYN_REPORT (0) ---------- +7ms
|
154
|
+
E: 0.029578 0004 0005 28400 # EV_MSC / MSC_TIMESTAMP 28400
|
155
|
+
E: 0.029578 0000 0000 0000 # ------------ SYN_REPORT (0) ---------- +7ms
|
156
|
+
E: 0.036772 0004 0005 35600 # EV_MSC / MSC_TIMESTAMP 35600
|
157
|
+
E: 0.036772 0000 0000 0000 # ------------ SYN_REPORT (0) ---------- +7ms
|
158
|
+
E: 0.043726 0004 0005 42800 # EV_MSC / MSC_TIMESTAMP 42800
|
159
|
+
E: 0.043726 0000 0000 0000 # ------------ SYN_REPORT (0) ---------- +7ms
|
160
|
+
E: 0.050790 0004 0005 50000 # EV_MSC / MSC_TIMESTAMP 50000
|
161
|
+
E: 0.050790 0000 0000 0000 # ------------ SYN_REPORT (0) ---------- +7ms
|
162
|
+
E: 0.057865 0004 0005 57100 # EV_MSC / MSC_TIMESTAMP 57100
|
163
|
+
E: 0.057865 0000 0000 0000 # ------------ SYN_REPORT (0) ---------- +7ms
|
164
|
+
E: 0.065048 0004 0005 64200 # EV_MSC / MSC_TIMESTAMP 64200
|
165
|
+
E: 0.065048 0000 0000 0000 # ------------ SYN_REPORT (0) ---------- +8ms
|
166
|
+
E: 0.072132 0004 0005 71300 # EV_MSC / MSC_TIMESTAMP 71300
|
167
|
+
E: 0.072132 0000 0000 0000 # ------------ SYN_REPORT (0) ---------- +7ms
|
168
|
+
E: 0.079311 0004 0005 78500 # EV_MSC / MSC_TIMESTAMP 78500
|
169
|
+
E: 0.079311 0000 0000 0000 # ------------ SYN_REPORT (0) ---------- +7ms
|
170
|
+
E: 0.086262 0004 0005 85600 # EV_MSC / MSC_TIMESTAMP 85600
|
171
|
+
E: 0.086262 0000 0000 0000 # ------------ SYN_REPORT (0) ---------- +7ms
|
172
|
+
E: 0.093343 0004 0005 92700 # EV_MSC / MSC_TIMESTAMP 92700
|
173
|
+
E: 0.093343 0000 0000 0000 # ------------ SYN_REPORT (0) ---------- +7ms
|
174
|
+
E: 0.100317 0004 0005 99900 # EV_MSC / MSC_TIMESTAMP 99900
|
175
|
+
E: 0.100317 0000 0000 0000 # ------------ SYN_REPORT (0) ---------- +7ms
|
176
|
+
E: 0.107314 0003 0035 0951 # EV_ABS / ABS_MT_POSITION_X 951
|
177
|
+
E: 0.107314 0003 0036 0181 # EV_ABS / ABS_MT_POSITION_Y 181
|
178
|
+
E: 0.107314 0004 0005 107100 # EV_MSC / MSC_TIMESTAMP 107100
|
179
|
+
E: 0.107314 0000 0000 0000 # ------------ SYN_REPORT (0) ---------- +7ms
|
180
|
+
E: 0.113629 0003 002f 0002 # EV_ABS / ABS_MT_SLOT 2
|
181
|
+
E: 0.113629 0003 0039 -001 # EV_ABS / ABS_MT_TRACKING_ID -1
|
182
|
+
E: 0.113629 0003 002f 0003 # EV_ABS / ABS_MT_SLOT 3
|
183
|
+
E: 0.113629 0003 0035 0950 # EV_ABS / ABS_MT_POSITION_X 950
|
184
|
+
E: 0.113629 0003 0036 0182 # EV_ABS / ABS_MT_POSITION_Y 182
|
185
|
+
E: 0.113629 0001 014e 0001 # EV_KEY / BTN_TOOL_TRIPLETAP 1
|
186
|
+
E: 0.113629 0001 014f 0000 # EV_KEY / BTN_TOOL_QUADTAP 0
|
187
|
+
E: 0.113629 0004 0005 114200 # EV_MSC / MSC_TIMESTAMP 114200
|
188
|
+
E: 0.113629 0000 0000 0000 # ------------ SYN_REPORT (0) ---------- +6ms
|
189
|
+
E: 0.119609 0003 002f 0000 # EV_ABS / ABS_MT_SLOT 0
|
190
|
+
E: 0.119609 0003 0039 -001 # EV_ABS / ABS_MT_TRACKING_ID -1
|
191
|
+
E: 0.119609 0003 002f 0001 # EV_ABS / ABS_MT_SLOT 1
|
192
|
+
E: 0.119609 0003 0039 -001 # EV_ABS / ABS_MT_TRACKING_ID -1
|
193
|
+
E: 0.119609 0003 002f 0003 # EV_ABS / ABS_MT_SLOT 3
|
194
|
+
E: 0.119609 0003 0035 0949 # EV_ABS / ABS_MT_POSITION_X 949
|
195
|
+
E: 0.119609 0003 0036 0183 # EV_ABS / ABS_MT_POSITION_Y 183
|
196
|
+
E: 0.119609 0001 0145 0001 # EV_KEY / BTN_TOOL_FINGER 1
|
197
|
+
E: 0.119609 0001 014e 0000 # EV_KEY / BTN_TOOL_TRIPLETAP 0
|
198
|
+
E: 0.119609 0003 0000 0949 # EV_ABS / ABS_X 949
|
199
|
+
E: 0.119609 0003 0001 0183 # EV_ABS / ABS_Y 183
|
200
|
+
E: 0.119609 0004 0005 121300 # EV_MSC / MSC_TIMESTAMP 121300
|
201
|
+
E: 0.119609 0000 0000 0000 # ------------ SYN_REPORT (0) ---------- +6ms
|
202
|
+
E: 0.125889 0003 0039 -001 # EV_ABS / ABS_MT_TRACKING_ID -1
|
203
|
+
E: 0.125889 0001 014a 0000 # EV_KEY / BTN_TOUCH 0
|
204
|
+
E: 0.125889 0001 0145 0000 # EV_KEY / BTN_TOOL_FINGER 0
|
205
|
+
E: 0.125889 0004 0005 128500 # EV_MSC / MSC_TIMESTAMP 128500
|
206
|
+
E: 0.125889 0000 0000 0000 # ------------ SYN_REPORT (0) ---------- +6ms
|