diff options
author | reinelt <> | 2002-08-19 07:52:19 +0000 |
---|---|---|
committer | reinelt <> | 2002-08-19 07:52:19 +0000 |
commit | 2fa253477b2f12e033c7e337268ca1c4354a280a (patch) | |
tree | 2199705f23d1f48c5e9365f744fa35c721e097de /USBLCD.c | |
parent | d8134396763fbf4ace33e6adfc98ebcb9ce3d49f (diff) | |
download | lcd4linux-2fa253477b2f12e033c7e337268ca1c4354a280a.tar.gz |
[lcd4linux @ 2002-08-19 07:52:19 by reinelt]
corrected type declaration of (*defchar)()
Diffstat (limited to 'USBLCD.c')
-rw-r--r-- | USBLCD.c | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -1,4 +1,4 @@ -/* $Id: USBLCD.c,v 1.5 2002/08/19 07:36:29 reinelt Exp $ +/* $Id: USBLCD.c,v 1.6 2002/08/19 07:52:19 reinelt Exp $ * * Driver for USBLCD ( see http://www.usblcd.de ) * This Driver is based on HD44780.c @@ -22,6 +22,9 @@ * * * $Log: USBLCD.c,v $ + * Revision 1.6 2002/08/19 07:52:19 reinelt + * corrected type declaration of (*defchar)() + * * Revision 1.5 2002/08/19 07:36:29 reinelt * * finished bar.c, USBLCD is the first driver that uses the generic bar functions @@ -172,7 +175,7 @@ static int USBLCD_open (void) return 0; } -static void USBLCD_define_char (int ascii, char *buffer) +void USBLCD_define_char (int ascii, char *buffer) { USBLCD_command (0x40|8*ascii); USBLCD_write (buffer, 8); |