aboutsummaryrefslogtreecommitdiffstats
path: root/parport.h
diff options
context:
space:
mode:
authorreinelt <reinelt@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2003-08-15 07:54:07 +0000
committerreinelt <reinelt@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2003-08-15 07:54:07 +0000
commit723ce62088b7c06deb4778263c1d6ad019455b8e (patch)
tree586c0353f85fe02b2c7a9beb9a78a3c1cc0e8e57 /parport.h
parent947c98a0d72dd1ff2668b473dc8510bfaab040ce (diff)
downloadlcd4linux-723ce62088b7c06deb4778263c1d6ad019455b8e.tar.gz
[lcd4linux @ 2003-08-15 07:54:07 by reinelt]
HD44780 4 bit mode implemented git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@216 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
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);