Subject: Re: Q840AV doesn't like 1.5 Alpha2
To: None <port-mac68k@netbsd.org>
From: Ken'ichi Ishizaka <ishizaka@sam.hi-ho.ne.jp>
List: port-mac68k
Date: 09/19/2000 10:43:54
| Anyone have an idea if the fix will make it into the 1.5 Release? It
| seems a shame to break the support for the A3 Mouse that has been fully
| working in so many previous releases.
1.5Alpha snapshot kernel mis-identified Apple 1 button mouse
as Logitech 3 button on my LC475 too.
It seems that some adb_op_sync() takes more usecs than expected.
experimentally 8000us timeout make correct recognition of 1 button
mouse in my environment.
--- adb.c.1.37 Mon Jul 17 14:45:07 2000
+++ adb.c Sat Aug 19 13:51:00 2000
@@ -286,8 +286,8 @@
* - stop bit (with SRQ): 140 usec
* Total: 6900 usec
*/
- tmout = 6900;
- for (tmout = 6900; !flag && tmout >= 10; tmout -= 10)
+ tmout = 8000;
+ for (tmout = 8000; !flag && tmout >= 10; tmout -= 10)
delay(10);
if (!flag && tmout > 0)
delay(tmout);
--
Ken'ichi Ishizaka