diff options
author | reinelt <> | 2004-01-09 04:16:06 +0000 |
---|---|---|
committer | reinelt <> | 2004-01-09 04:16:06 +0000 |
commit | c8d1a94e34b59f94c8bf7af1a5dde282515a2e19 (patch) | |
tree | 97337d07d0693302ca3031d256bff023a4d18f82 /MatrixOrbital.c | |
parent | 28ae14208cef01ae0ca6293b88968ec31bec855e (diff) | |
download | lcd4linux-c8d1a94e34b59f94c8bf7af1a5dde282515a2e19.tar.gz |
[lcd4linux @ 2004-01-09 04:16:06 by reinelt]
added 'section' argument to cfg_get(), but NULLed it on all calls by now.
Diffstat (limited to 'MatrixOrbital.c')
-rw-r--r-- | MatrixOrbital.c | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/MatrixOrbital.c b/MatrixOrbital.c index 78e6c8c..3944cf4 100644 --- a/MatrixOrbital.c +++ b/MatrixOrbital.c @@ -1,4 +1,4 @@ -/* $Id: MatrixOrbital.c,v 1.49 2003/12/19 05:35:14 reinelt Exp $ +/* $Id: MatrixOrbital.c,v 1.50 2004/01/09 04:16:06 reinelt Exp $ * * driver for Matrix Orbital serial display modules * @@ -22,6 +22,9 @@ * * * $Log: MatrixOrbital.c,v $ + * Revision 1.50 2004/01/09 04:16:06 reinelt + * added 'section' argument to cfg_get(), but NULLed it on all calls by now. + * * Revision 1.49 2003/12/19 05:35:14 reinelt * renamed 'client' to 'plugin' * @@ -370,7 +373,7 @@ static int MO_contrast (void) char buffer[4]; int contrast; - if (cfg_number("Contrast", 160, 0, 255, &contrast)<0) return -1; + if (cfg_number(NULL, "Contrast", 160, 0, 255, &contrast)<0) return -1; snprintf (buffer, 4, "\376P%c", contrast); MO_write (buffer, 3); return 0; @@ -588,14 +591,14 @@ static int MO_init (LCD *Self, int protocol) Port=NULL; } - port=cfg_get ("Port",NULL); + port=cfg_get (NULL, "Port", NULL); if (port==NULL || *port=='\0') { error ("MatrixOrbital: no 'Port' entry in %s", cfg_source()); return -1; } Port=strdup(port); - if (cfg_number("Speed", 19200, 1200, 19200, &i)<0) return -1; + if (cfg_number(NULL, "Speed", 19200, 1200, 19200, &i)<0) return -1; switch (i) { case 1200: Speed=B1200; @@ -641,7 +644,7 @@ static int MO_init (LCD *Self, int protocol) info ("Display on %s has Firmware Version 0x%x", Port, *buffer); - if (cfg_number("Icons", 0, 0, CHARS, &Icons)<0) return -1; + if (cfg_number(NULL, "Icons", 0, 0, CHARS, &Icons)<0) return -1; if (Icons>0) { debug ("reserving %d of %d user-defined characters for icons", Icons, CHARS); icon_init(Lcd.rows, Lcd.cols, XRES, YRES, CHARS, Icons, MO_define_char); |