|
From: Favux ... <fav...@gm...> - 2012-12-01 23:09:03
|
On Sat, Dec 1, 2012 at 2:42 PM, Maximilian Federle <max...@go...> wrote: > Hello Favux, > > thanks for your extensive reply! Following your suggestion I edited > /usr/share/X11/xorg.conf.d/50-wacom.conf in Ubuntu to change the following > rule: > > Section "InputClass" > Identifier "Wacom class" > MatchProduct "Wacom|WACOM|Hanwang|PTK-540WL" > MatchDevicePath "/dev/input/event*" > Driver "wacom" > EndSection > > to > > Section "InputClass" > Identifier "Wacom class" > MatchProduct "Wacom|WACOM|Hanwang|PTK-540WL" > MatchDevicePath "/dev/input/event*" > Driver "evdev" > EndSection That will disable your stylus. You just did it as a test? For custom .conf files see: http://sourceforge.net/apps/mediawiki/linuxwacom/index.php?title=Xorg.conf.d http://sourceforge.net/apps/mediawiki/linuxwacom/index.php?title=USB_Tablets_with_Touch > I confirmed in Xorg.0.log that the evdev driver recognized the wacom device > as a touch device. However testing this config revealed (with xinput > test-xi2 11) that the driver reports being capable of using two fingers > only. With synaptics I had no luck whatsoever, it refused to load for the > wacom finger device. Well looking at wacom_wac.c (a wacom.ko component in the kernel /drivers/input/tablet) it appears the E6 has 2FGT: static const struct wacom_features wacom_features_0xE6 = { "Wacom ISDv4 E6", WACOM_PKGLEN_TPC2FG, 27760, 15694, 255, 0, TABLETPC2FG, WACOM_INTUOS_RES, WACOM_INTUOS_RES, .touch_max = 2 }; I don't know whether the X230t/E6 touchscreen hardware does theoretically support more fingers or not. Favux |