aboutsummaryrefslogtreecommitdiffstats
path: root/drv_LCDLinux.c
diff options
context:
space:
mode:
authorreinelt <>2005-02-24 06:51:40 +0000
committerreinelt <>2005-02-24 06:51:40 +0000
commit0f91618aa36e77c0c9e8433f28dd3e313003a3db (patch)
tree5948e1ac0d0590fd12abcd6e3a90417c695e6f07 /drv_LCDLinux.c
parentc45466ff9231463f65a2146e300b863757f19663 (diff)
downloadlcd4linux-0f91618aa36e77c0c9e8433f28dd3e313003a3db.tar.gz
[lcd4linux @ 2005-02-24 06:51:40 by reinelt]
LCD-Linux driver GOTO_COST corrected
Diffstat (limited to '')
-rw-r--r--drv_LCDLinux.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/drv_LCDLinux.c b/drv_LCDLinux.c
index 885d440..cf83f9c 100644
--- a/drv_LCDLinux.c
+++ b/drv_LCDLinux.c
@@ -1,4 +1,4 @@
-/* $Id: drv_LCDLinux.c,v 1.2 2005/01/30 06:43:22 reinelt Exp $
+/* $Id: drv_LCDLinux.c,v 1.3 2005/02/24 06:51:40 reinelt Exp $
*
* driver for the LCD-Linux HD44780 kernel driver
* http://lcd-linux.sourceforge.net
@@ -24,6 +24,9 @@
*
*
* $Log: drv_LCDLinux.c,v $
+ * Revision 1.3 2005/02/24 06:51:40 reinelt
+ * LCD-Linux driver GOTO_COST corrected
+ *
* Revision 1.2 2005/01/30 06:43:22 reinelt
* driver for LCD-Linux finished
*
@@ -227,9 +230,7 @@ int drv_LL_init (const char *section, const int quiet)
YRES = 8; /* pixel height of one char */
CHARS = 8; /* number of user-defineable characters */
CHAR0 = 0; /* ASCII of first user-defineable char */
-
- /* Fixme: */
- GOTO_COST = 2; /* number of bytes a goto command requires */
+ GOTO_COST = 1; /* number of bytes a goto command requires */
/* real worker functions */
drv_generic_text_real_write = drv_LL_write;