diff options
author | reinelt <> | 2003-09-29 06:58:37 +0000 |
---|---|---|
committer | reinelt <> | 2003-09-29 06:58:37 +0000 |
commit | 74bcb3f0eca15fffeb63fbdbc8102c4fc9d686be (patch) | |
tree | 219b2b249576d73ba2eedd6a10804e8faaf3ab60 /display.c | |
parent | 0023926a82ccc300f2fdbc01c91244cc3180d261 (diff) | |
download | lcd4linux-74bcb3f0eca15fffeb63fbdbc8102c4fc9d686be.tar.gz |
[lcd4linux @ 2003-09-29 06:58:36 by reinelt]
new driver for Milford Instruments MI420 by Andy Baxter
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.42 2003/09/10 03:48:23 reinelt Exp $ +/* $Id: display.c,v 1.43 2003/09/29 06:58:37 reinelt Exp $ * * framework for device drivers * @@ -20,6 +20,9 @@ * * * $Log: display.c,v $ + * Revision 1.43 2003/09/29 06:58:37 reinelt + * new driver for Milford Instruments MI420 by Andy Baxter + * * Revision 1.42 2003/09/10 03:48:23 reinelt * Icons for M50530, new processing scheme (Ticks.Text...) * @@ -238,6 +241,7 @@ extern LCD M50530[]; extern LCD T6963[]; extern LCD USBLCD[]; extern LCD MatrixOrbital[]; +extern LCD MilfordInstruments[]; extern LCD PalmPilot[]; extern LCD Raster[]; extern LCD SIN[]; @@ -275,6 +279,9 @@ FAMILY Driver[] = { #ifdef WITH_MATRIXORBITAL { "Matrix Orbital", MatrixOrbital }, #endif +#ifdef WITH_MILINST + { "Milford Instruments", MilfordInstruments }, +#endif #ifdef WITH_PALMPILOT { "3Com Palm Pilot", PalmPilot }, #endif @@ -307,7 +314,7 @@ int lcd_list (void) printf ("available display drivers:"); for (i=0; Driver[i].name; i++) { - printf ("\n %-16s:", Driver[i].name); + printf ("\n %-20s:", Driver[i].name); for (j=0; Driver[i].Model[j].name; j++) { printf (" %s", Driver[i].Model[j].name); } |