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 /parport.h | |
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 'parport.h')
-rw-r--r-- | parport.h | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -1,4 +1,4 @@ -/* $Id: parport.h,v 1.2 2003/04/07 06:03:10 reinelt Exp $ +/* $Id: parport.h,v 1.3 2003/08/15 07:54:07 reinelt Exp $ * * generic parallel port handling * @@ -20,6 +20,9 @@ * * * $Log: parport.h,v $ + * Revision 1.3 2003/08/15 07:54:07 reinelt + * HD44780 4 bit mode implemented + * * Revision 1.2 2003/04/07 06:03:10 reinelt * further parallel port abstraction * @@ -33,7 +36,8 @@ int parport_open (void); int parport_close (void); -unsigned char parport_wire (char *name, char *deflt); +unsigned char parport_wire_ctrl (char *name, unsigned char *deflt); +unsigned char parport_wire_data (char *name, unsigned char *deflt); void parport_direction (int direction); void parport_control (unsigned char mask, unsigned char value); void parport_toggle (unsigned char bit, int level, int delay); |