diff options
author | reinelt <> | 2000-04-15 11:13:54 +0000 |
---|---|---|
committer | reinelt <> | 2000-04-15 11:13:54 +0000 |
commit | 9995cf7420a59acfc3550f28a9e14fa8b08fffe5 (patch) | |
tree | ae8a6348cdb49be80e7b2b39979259a74c923ce3 /cfg.c | |
parent | 7a34aa1940680a265c074fe1c4f329eb0669d63c (diff) | |
download | lcd4linux-9995cf7420a59acfc3550f28a9e14fa8b08fffe5.tar.gz |
[lcd4linux @ 2000-04-15 11:13:54 by reinelt]
added '-d' (debugging) switch
added several debugging messages
removed config entry 'Delay' for HD44780 driver
delay loop for HD44780 will be calibrated automatically
Diffstat (limited to 'cfg.c')
-rw-r--r-- | cfg.c | 11 |
1 files changed, 9 insertions, 2 deletions
@@ -1,4 +1,4 @@ -/* $Id: cfg.c,v 1.6 2000/04/03 04:46:38 reinelt Exp $ +/* $Id: cfg.c,v 1.7 2000/04/15 11:13:54 reinelt Exp $ * * config file stuff * @@ -20,6 +20,13 @@ * * * $Log: cfg.c,v $ + * Revision 1.7 2000/04/15 11:13:54 reinelt + * + * added '-d' (debugging) switch + * added several debugging messages + * removed config entry 'Delay' for HD44780 driver + * delay loop for HD44780 will be calibrated automatically + * * Revision 1.6 2000/04/03 04:46:38 reinelt * * added '-c key=val' option @@ -140,7 +147,7 @@ static char *dequote (char *string) static void cfg_add (char *key, char *val, int lock) { int i; - + for (i=0; i<nConfig; i++) { if (strcasecmp(Config[i].key, key)==0) { if (Config[i].lock>lock) return; |