diff options
author | reinelt <> | 2001-09-10 13:55:53 +0000 |
---|---|---|
committer | reinelt <> | 2001-09-10 13:55:53 +0000 |
commit | 832041ab49ceed247aa6b8caf1033266e11025d3 (patch) | |
tree | cd36ee97db1d992d09285343ef1c2c08417d7b43 /display.c | |
parent | 7eeb474f0f2baad920a2f08d458b86d5836b59b9 (diff) | |
download | lcd4linux-832041ab49ceed247aa6b8caf1033266e11025d3.tar.gz |
[lcd4linux @ 2001-09-10 13:55:53 by reinelt]
M50530 driver
Diffstat (limited to 'display.c')
-rw-r--r-- | display.c | 11 |
1 files changed, 9 insertions, 2 deletions
@@ -1,4 +1,4 @@ -/* $Id: display.c,v 1.28 2001/03/16 16:40:17 ltoetsch Exp $ +/* $Id: display.c,v 1.29 2001/09/10 13:55:53 reinelt Exp $ * * framework for device drivers * @@ -20,6 +20,9 @@ * * * $Log: display.c,v $ + * Revision 1.29 2001/09/10 13:55:53 reinelt + * M50530 driver + * * Revision 1.28 2001/03/16 16:40:17 ltoetsch * implemented time bar * @@ -184,6 +187,7 @@ extern LCD BeckmannEgle[]; extern LCD Crystalfontz[]; extern LCD HD44780[]; +extern LCD M50530[]; extern LCD MatrixOrbital[]; extern LCD PalmPilot[]; extern LCD Raster[]; @@ -202,6 +206,9 @@ FAMILY Driver[] = { #ifdef WITH_HD44780 { "HD 44780 based", HD44780 }, #endif +#ifdef WITH_M50530 + { "M50530 based", M50530 }, +#endif #ifdef WITH_MATRIXORBITAL { "Matrix Orbital", MatrixOrbital }, #endif @@ -221,7 +228,7 @@ FAMILY Driver[] = { { "X Window System", XWindow }, #endif #ifdef WITH_TEXT - { "X Ncurses Text", Text }, + { "ncurses Text", Text }, #endif { NULL } }; |