-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On 24/08/10 15:33, Chris Bagwell wrote: > Can you try the following? This Graphire is the only code path that > hard codes the BTN_TOOL_FINGER to a value of 0xf0. The bisect shows a > time period when it was not fixed to 0xf0 so I suspect that is your > issue. > > All other code paths set it to either 0xf0/0 or 1/0 based on proximity > values. I guess currently it means you could get a garbage value > right at going out-of-proximity which could explain unwanted button > presses. > > Look for this in WACOM_C4 case statement: > > input_report_key(input, BTN_TOOL_FINGER, 0xf0); > if (!prox) > wacom->id[1] = 0; > > And change to: > > input_report_key(input, BTN_TOOL_FINGER, prox != 0); > if (!prox) > wacom->id[1] = 0;
Thanks Chris, I'll give that a go, although I haven't really seen unwanted button presses (and I'm not sure I leave the proximity that often), it's mostly the mouse wheel rotation. Thanks also for the evdump hint, that should make figuring out the problem much easier... 5:) Mike 5:) -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.16 (GNU/Linux) iEYEARECAAYFAkx0NjoACgkQu7rWomwgFXpdQQCgmmUMGO7U1sSygd/IGJmbO/Rq vP0An3B5IvLjOW2GI881XnrLURG9c9yY =rE2F -----END PGP SIGNATURE----- ------------------------------------------------------------------------------ Sell apps to millions through the Intel(R) Atom(Tm) Developer Program Be part of this innovative community and reach millions of netbook users worldwide. Take advantage of special opportunities to increase revenue and speed time-to-market. Join now, and jumpstart your future. http://p.sf.net/sfu/intel-atom-d2d _______________________________________________ Linuxwacom-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/linuxwacom-devel
