aboutsummaryrefslogtreecommitdiffstats
path: root/parport.h
diff options
context:
space:
mode:
authorreinelt <>2003-08-15 07:54:07 +0000
committerreinelt <>2003-08-15 07:54:07 +0000
commit42e23909e0118d73b2657f9d4423cffd1a0ea3a0 (patch)
tree586c0353f85fe02b2c7a9beb9a78a3c1cc0e8e57 /parport.h
parent49e81de48867ae54874044773983a3c2bf86ddb3 (diff)
downloadlcd4linux-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.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/parport.h b/parport.h
index a7e5d41..d4b0362 100644
--- a/parport.h
+++ b/parport.h
@@ -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);