diff options
author | reinelt <> | 2003-08-15 07:54:07 +0000 |
---|---|---|
committer | reinelt <> | 2003-08-15 07:54:07 +0000 |
commit | 42e23909e0118d73b2657f9d4423cffd1a0ea3a0 (patch) | |
tree | 586c0353f85fe02b2c7a9beb9a78a3c1cc0e8e57 /T6963.c | |
parent | 49e81de48867ae54874044773983a3c2bf86ddb3 (diff) | |
download | lcd4linux-42e23909e0118d73b2657f9d4423cffd1a0ea3a0.tar.gz |
[lcd4linux @ 2003-08-15 07:54:07 by reinelt]
HD44780 4 bit mode implemented
Diffstat (limited to 'T6963.c')
-rw-r--r-- | T6963.c | 13 |
1 files changed, 8 insertions, 5 deletions
@@ -1,4 +1,4 @@ -/* $Id: T6963.c,v 1.8 2003/08/01 05:15:42 reinelt Exp $ +/* $Id: T6963.c,v 1.9 2003/08/15 07:54:07 reinelt Exp $ * * driver for display modules based on the Toshiba T6963 chip * @@ -20,6 +20,9 @@ * * * $Log: T6963.c,v $ + * Revision 1.9 2003/08/15 07:54:07 reinelt + * HD44780 4 bit mode implemented + * * Revision 1.8 2003/08/01 05:15:42 reinelt * last cleanups for 0.9.9 * @@ -342,10 +345,10 @@ int T6_init (LCD *Self) return -1; } - if ((SIGNAL_CE=parport_wire ("CE", "STROBE"))==0xff) return -1; - if ((SIGNAL_CD=parport_wire ("CD", "SELECT"))==0xff) return -1; - if ((SIGNAL_RD=parport_wire ("RD", "AUTOFD"))==0xff) return -1; - if ((SIGNAL_WR=parport_wire ("WR", "INIT"))==0xff) return -1; + if ((SIGNAL_CE=parport_wire_ctrl ("CE", "STROBE"))==0xff) return -1; + if ((SIGNAL_CD=parport_wire_ctrl ("CD", "SELECT"))==0xff) return -1; + if ((SIGNAL_RD=parport_wire_ctrl ("RD", "AUTOFD"))==0xff) return -1; + if ((SIGNAL_WR=parport_wire_ctrl ("WR", "INIT") )==0xff) return -1; if (parport_open() != 0) { error ("HD44780: could not initialize parallel port!"); |