aboutsummaryrefslogtreecommitdiffstats
path: root/display.c
diff options
context:
space:
mode:
authorreinelt <reinelt@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2003-09-29 06:58:37 +0000
committerreinelt <reinelt@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2003-09-29 06:58:37 +0000
commit5abfdf9721cdb83851a15fcec795f59748eb97c6 (patch)
tree219b2b249576d73ba2eedd6a10804e8faaf3ab60 /display.c
parent0280c32d667a36a5809f2c7a83015a7bc035dce7 (diff)
downloadlcd4linux-5abfdf9721cdb83851a15fcec795f59748eb97c6.tar.gz
[lcd4linux @ 2003-09-29 06:58:36 by reinelt]
new driver for Milford Instruments MI420 by Andy Baxter git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@249 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
Diffstat (limited to 'display.c')
-rw-r--r--display.c11
1 files changed, 9 insertions, 2 deletions
diff --git a/display.c b/display.c
index 11b5530..cf418e6 100644
--- a/display.c
+++ b/display.c
@@ -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);
}