|
From: Allen A. <ak...@po...> - 2003-10-31 03:10:31
|
Specifically, can it generate button events so that it works well with applications that are designed for use with other wheel mice? I've tried several different drivers. The ones I'm running currently are the 0.5.2-beta drivers, built from source. (In particular, not the 0.5.2-beta prebuilt version of wacom_drv.o.) This is on an up-to-date version of RedHat 9, with XFree86 4.3.0. After tweaking parameters for a while everything works nicely except the wheel, which seems to generate no X events at all. Here are the relevant sections from my XF86Config file: Section "ServerLayout" Identifier "Anaconda Configured" Screen 0 "Screen0" 0 0 InputDevice "Mouse0" "CorePointer" InputDevice "Keyboard0" "CoreKeyboard" InputDevice "cursor" "SendCoreEvents" InputDevice "stylus" "SendCoreEvents" InputDevice "eraser" "SendCoreEvents" EndSection # Logitech Cordless Mouseman Wheel: Section "InputDevice" Identifier "Mouse0" Driver "mouse" Option "Protocol" "MouseManPlusPS/2" Option "Device" "/dev/psaux" Option "Buttons" "6" Option "ZAxisMapping" "5 6" Option "Emulate3Buttons" "no" EndSection # Wacom devices: Section "InputDevice" Identifier "cursor" Driver "wacom" Option "Device" "/dev/input/event0" Option "Type" "cursor" Option "Mode" "relative" Option "Speed" "3.0" Option "USB" "on" Option "Threshold" "10" Option "BaudRate" "38400" Option "Suppress" "4" EndSection Section "InputDevice" Identifier "stylus" Driver "wacom" Option "Device" "/dev/input/event0" Option "Type" "stylus" Option "Mode" "absolute" Option "USB" "on" Option "Tilt" "on" # Option "TiltInvert" "on" Option "Threshold" "10" Option "BaudRate" "38400" EndSection Section "InputDevice" Identifier "eraser" Driver "wacom" Option "Device" "/dev/input/event0" Option "Type" "eraser" Option "Mode" "absolute" Option "USB" "on" Option "Tilt" "on" # Option "TiltInvert" "on" Option "Threshold" "10" Option "BaudRate" "38400" EndSection I did grab the current CVS trunk and build it, but it looks like there are so many undocumented changes (particularly to the XF86Config options) that I wasn't sure I wanted to try it unless it's likely to solve the wheel problem without introducing any others. So, does anyone have any advice? Have I messed up my configuration somehow, or is the current CVS driver the right thing to use, or should I try something else altogether? Thanks! Allen |