diff options
author | reinelt <reinelt@3ae390bd-cb1e-0410-b409-cd5a39f66f1f> | 2004-02-14 11:56:17 +0000 |
---|---|---|
committer | reinelt <reinelt@3ae390bd-cb1e-0410-b409-cd5a39f66f1f> | 2004-02-14 11:56:17 +0000 |
commit | 02f87e08e6fa94ff943c84768197fba5f719a951 (patch) | |
tree | a06f315366c4efeb59913dd0eb9cdd3fb929a7f7 /drv_MatrixOrbital.c | |
parent | 4c40b4065bedef2b8a490a88fc4ec04086b7a0f2 (diff) | |
download | lcd4linux-02f87e08e6fa94ff943c84768197fba5f719a951.tar.gz |
[lcd4linux @ 2004-02-14 11:56:11 by reinelt]
M50530 driver ported
changed lots of 'char' to 'unsigned char'
git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@363 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
Diffstat (limited to 'drv_MatrixOrbital.c')
-rw-r--r-- | drv_MatrixOrbital.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/drv_MatrixOrbital.c b/drv_MatrixOrbital.c index 1eb059d..29e2fd2 100644 --- a/drv_MatrixOrbital.c +++ b/drv_MatrixOrbital.c @@ -1,4 +1,4 @@ -/* $Id: drv_MatrixOrbital.c,v 1.19 2004/01/29 04:40:02 reinelt Exp $ +/* $Id: drv_MatrixOrbital.c,v 1.20 2004/02/14 11:56:17 reinelt Exp $ * * new style driver for Matrix Orbital serial display modules * @@ -23,6 +23,10 @@ * * * $Log: drv_MatrixOrbital.c,v $ + * Revision 1.20 2004/02/14 11:56:17 reinelt + * M50530 driver ported + * changed lots of 'char' to 'unsigned char' + * * Revision 1.19 2004/01/29 04:40:02 reinelt * every .c file includes "config.h" now * @@ -192,7 +196,7 @@ static void drv_MO_goto (int row, int col) } -static void drv_MO_defchar (int ascii, char *buffer) +static void drv_MO_defchar (int ascii, unsigned char *buffer) { char cmd[3]="\376N"; |