[Lcdproc] eyebox driver : blinking backlight

NeZetiC nezetic@gmail.com
Wed Oct 11 20:21:02 2006


Hello,

I have found a mistake in my EyeboxOne driver. In fact, it's just one =20=

line which make a sort of deny of service on keypad function.
EyeboxOne's LCD seems to send a lot of stupid characters on serial =20
interface, which make keypad unusable   due to the data flow.

BR

C=E9dric


File : EyeboxOne-KeyPAD_DOS.patch

--- EyeboxOne.c.old	Wed Oct 11 20:08:24 2006
+++ EyeboxOne.c	Wed Oct 11 20:05:46 2006
@@ -637,7 +637,7 @@
		else if (in =3D=3D p->escape_key)
			return "Escape";
		else {
-			report(RPT_INFO, "%s: untreated key 0x%02X", =
drvthis->name, in);
+			//report(RPT_INFO, "%s: untreated key 0x%02X", =
drvthis->name, in);
			return NULL;
		}
	}