Xorg (latest from ports) and no mouse movement
Vladimir Kondratyev
vladimir at kondratyev.su
Wed Dec 16 11:56:32 UTC 2020
On 16.12.2020 14:28, Matthias Apitz wrote:
> El día jueves, diciembre 10, 2020 a las 09:03:02p. m. +0300, Vladimir Kondratyev escribió:
>
>>> In /etc/sysctl.conf I have for cyapa TP
>>>
>>> debug.cyapa_enable_tapclick=3
>>> debug.cyapa_tapclick_max_ticks=20
>>>
>>> Maybe this could be related.
>>>
>> What types of press did you try? Taps or clicks?
>
> Only short taps.
>
AFAIK, libinput disables taps by default. Try to add following snippet
to your xorg.conf:
Section "InputClass"
Identifier "touchpad"
Driver "libinput"
MatchIsTouchpad "on"
Option "Tapping" "on"
Option "NaturalScrolling" "on"
Option "ClickMethod" "clickfinger"
EndSection
Or try to search "Tap enable" checkbox in your DE control panel if it
exists.
>> Could you run evemu-record from devel/evemu, than choose "Cypress APA
>> I2C Trackpad" as input source, do a "CLICK" and than send me output?
>
> When I start it, it says at the end:
>
>
> ...
> A: 35 0 870 0 0 10
> A: 36 0 470 0 0 10
> A: 39 -1 15 0 0 0
> A: 3a 0 255 0 0 0
> ################################
> # Waiting for events #
> ################################
>
> and nothing happens on clicks or taps.
>
No events at all. Even a touch events...
Don't you forget to set sysctl kern.evdev.rcpt_mask back to 12?
> # Event type 1 (EV_KEY)
> # Event code 272 (BTN_LEFT)
> # Event code 274 (BTN_MIDDLE)
> # Event code 325 (BTN_TOOL_FINGER)
> # Event code 328 (BTN_TOOL_QUINTTAP)
> # Event code 330 (BTN_TOUCH)
> # Event code 333 (BTN_TOOL_DOUBLETAP)
> # Event code 334 (BTN_TOOL_TRIPLETAP)
> # Event code 335 (BTN_TOOL_QUADTAP)
> # Event type 3 (EV_ABS)
It looks like middle button is misdetected
More information about the freebsd-x11
mailing list