[Linuxwacom-devel] linuxwacom project - asustek eeenote tablet

2011-12-30 Thread Mike Rolland
Le jeudi 29 décembre 2011 à 17:00 +, Ping Cheng a écrit : Hi Mike, Yes, I am interested to help. And I am grateful that you have and are interested in supporting linuxwacom project. You are the people that I am still working on the project ;). Nice. I already done this kind of

Re: [Linuxwacom-devel] linuxwacom project - asustek eeenote tablet

2011-12-30 Thread Favux ...
Hi Mike, Is this the Eee Note EA800? An e-ink e-book reader with an active stylus with 256 pressure levels and no touch? http://www.asus.com/Eee/Eee_Note/Eee_Note_EA800/ If so it apparently is a Wacom digitizer. But there is no Wacom digitizer in the lsusb output? Just the Bus 002 Device 012:

Re: [Linuxwacom-devel] linuxwacom project - asustek eeenote tablet

2011-12-30 Thread Chris Bagwell
On Fri, Dec 30, 2011 at 10:17 AM, Favux ... favux...@gmail.com wrote: Hi Mike, Is this the Eee Note EA800?  An e-ink e-book reader with an active stylus with 256 pressure levels and no touch? http://www.asus.com/Eee/Eee_Note/Eee_Note_EA800/ If so it apparently is a Wacom digitizer.  But

Re: [Linuxwacom-devel] [PATCH 1/4] Extra right clicks removed.

2011-12-30 Thread Chris Bagwell
I had wanted to change 2nd-finger tap gesture to a 2 finger tap (the difference being that in former you leave 1st finger touching and in later you tap both fingers and release both fingers). But I may never get around to that since gestures are moving outside X soon enough. So in mean time,

Re: [Linuxwacom-devel] [PATCH 2/4] Fix cursor jumping after zoom and scroll gestures when in Relative mode.

2011-12-30 Thread Chris Bagwell
The need for this makes sense (although I haven't tested it to much to see the jump). Although absolute devices don't have the same delta issue, I think its better to use same code flow in both cases. So I'd totally delete the original if (wcmGestureMode) return; and add the single if() inside

Re: [Linuxwacom-devel] linuxwacom project - asustek eeenote tablet

2011-12-30 Thread Mike Rolland
Effectively, wacom.h has a LENOVO line: #define USB_VENDOR_ID_LENOVO 0x17ef So I add ASUSTEK. I didn't see something else relevant in other kernel wacom libs (there is probably some). My only problem is that I absolutely don't remember how to compile a single driver in kernel tree. If someone

[Linuxwacom-devel] Soft buttons for wacom digitazer on HP TC4200

2011-12-30 Thread Yaroslav Sheptykin
Hi Wacom Experts! I am a happy owner of an old HP TC4200 tablet. Since last two years I have been using various versions of Ubuntu and none of recent brought full functionality to my wacom digitizer out of the ox (the last one got pretty close though). Different

Re: [Linuxwacom-devel] linuxwacom project - asustek eeenote tablet

2011-12-30 Thread Chris Bagwell
On Fri, Dec 30, 2011 at 2:21 PM, Mike Rolland none...@gmail.com wrote: Le vendredi 30 décembre 2011 à 11:37 -0600, Chris Bagwell a écrit : * Run dmesg | grep ASUSTek and look for line telling if kernel driver has been installed for this device. [root@hpm mike]# dmesg | grep ASUSTek usb

Re: [Linuxwacom-devel] [PATCH 1/4] Extra right clicks removed.

2011-12-30 Thread Ping Cheng
On Fri, Dec 30, 2011 at 11:21 AM, Chris Bagwell ch...@cnpbagwell.com wrote: I had wanted to change 2nd-finger tap gesture to a 2 finger tap (the difference being that in former you leave 1st finger touching and in later you tap both fingers and release both fingers). But I may never get

Re: [Linuxwacom-devel] Soft buttons for wacom digitazer on HP TC4200

2011-12-30 Thread Chris Bagwell
On Fri, Dec 30, 2011 at 3:00 PM, Yaroslav Sheptykin yarik.shepty...@googlemail.com wrote: Hi Wacom Experts!        I am a happy owner of an old HP TC4200 tablet. Since last two        years I have been using various versions of Ubuntu and none of        recent brought full functionality to my

Re: [Linuxwacom-devel] [PATCH 0/4] xf86-input-wacom touchpad improvements for Bamboo Pen Touch

2011-12-30 Thread Alexey Osipov
Hi, Chris. Okay, I agree that I didn't done enough investigation on the case. Now I see that I reinvent Device Accel Constant Deceleration property. So, I remove my fourth patch from the patchset. Right now I'm not interested in providing a good default value working in xf86-input-wacom, but

Re: [Linuxwacom-devel] [PATCH 2/4] Fix cursor jumping after zoom and scroll gestures when in Relative mode.

2011-12-30 Thread Alexey Osipov
В Птн, 30/12/2011 в 13:30 -0600, Chris Bagwell пишет: The need for this makes sense (although I haven't tested it to much to see the jump). Although absolute devices don't have the same delta issue, I think its better to use same code flow in both cases. So I'd totally delete the original