]> git.webhop.me Git - lcd4linux.git/commitdiff
[lcd4linux @ 2003-06-21 05:46:18 by reinelt]
authorreinelt <reinelt@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>
Sat, 21 Jun 2003 05:46:18 +0000 (05:46 +0000)
committerreinelt <reinelt@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>
Sat, 21 Jun 2003 05:46:18 +0000 (05:46 +0000)
DVB client integrated

git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@194 3ae390bd-cb1e-0410-b409-cd5a39f66f1f

Makefile.am
Makefile.in
isdn.c
parser.c
parser.h
processor.c

index f97567848ea9a5bb514c60054a4b27ec5a4cf355..fe3c489ed3c7118f291da302e807926fafd36eb6 100644 (file)
@@ -22,6 +22,7 @@ isdn.c isdn.h \
 mail.c mail.h \
 seti.c seti.h \
 battery.c battery.h \
+dvb.c dvb.h \
 filter.c filter.h \
 udelay.c udelay.h \
 display.c display.h \
index 13055b7a1c63a4391bbebcc47c1e8cffc305d241..52f7232c232c334c030948ed18c50a56cd7515c9 100644 (file)
@@ -76,7 +76,7 @@ lcd4linux_LDFLAGS = $(X_LIBS)
 lcd4linux_LDADD = @DRIVERS@ @DRVLIBS@
 lcd4linux_DEPENDENCIES = @DRIVERS@
 
-lcd4linux_SOURCES =  lcd4linux.c debug.c debug.h cfg.c cfg.h lock.c lock.h parser.c parser.h processor.c processor.h system.c system.h isdn.c isdn.h mail.c mail.h seti.c seti.h battery.c battery.h filter.c filter.h udelay.c udelay.h display.c display.h pixmap.c pixmap.h bar.c bar.h fontmap.c fontmap.h exec.c exec.h mail2.c socket.c socket.h
+lcd4linux_SOURCES =  lcd4linux.c debug.c debug.h cfg.c cfg.h lock.c lock.h parser.c parser.h processor.c processor.h system.c system.h isdn.c isdn.h mail.c mail.h seti.c seti.h battery.c battery.h dvb.c dvb.h filter.c filter.h udelay.c udelay.h display.c display.h pixmap.c pixmap.h bar.c bar.h fontmap.c fontmap.h exec.c exec.h mail2.c socket.c socket.h
 
 
 EXTRA_lcd4linux_SOURCES =  BeckmannEgle.c Crystalfontz.c Crystalfontz.h Cwlinux.c HD44780.c M50530.c T6963.c USBLCD.c MatrixOrbital.c PalmPilot.c Raster.c SIN.c Skeleton.c XWindow.c Text.c
@@ -100,8 +100,8 @@ X_LIBS = @X_LIBS@
 X_EXTRA_LIBS = @X_EXTRA_LIBS@
 X_PRE_LIBS = @X_PRE_LIBS@
 lcd4linux_OBJECTS =  lcd4linux.o debug.o cfg.o lock.o parser.o \
-processor.o system.o isdn.o mail.o seti.o battery.o filter.o udelay.o \
-display.o pixmap.o bar.o fontmap.o exec.o mail2.o socket.o
+processor.o system.o isdn.o mail.o seti.o battery.o dvb.o filter.o \
+udelay.o display.o pixmap.o bar.o fontmap.o exec.o mail2.o socket.o
 CFLAGS = @CFLAGS@
 COMPILE = $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
 CCLD = $(CC)
@@ -119,7 +119,7 @@ DEP_FILES =  .deps/BeckmannEgle.P .deps/Crystalfontz.P .deps/Cwlinux.P \
 .deps/HD44780.P .deps/M50530.P .deps/MatrixOrbital.P .deps/PalmPilot.P \
 .deps/Raster.P .deps/SIN.P .deps/Skeleton.P .deps/T6963.P .deps/Text.P \
 .deps/USBLCD.P .deps/XWindow.P .deps/bar.P .deps/battery.P .deps/cfg.P \
-.deps/debug.P .deps/display.P .deps/exec.P .deps/filter.P \
+.deps/debug.P .deps/display.P .deps/dvb.P .deps/exec.P .deps/filter.P \
 .deps/fontmap.P .deps/isdn.P .deps/lcd4linux.P .deps/lock.P \
 .deps/mail.P .deps/mail2.P .deps/parser.P .deps/pixmap.P \
 .deps/processor.P .deps/seti.P .deps/socket.P .deps/system.P \
diff --git a/isdn.c b/isdn.c
index 7a2f570c8731a1b9d2e7eb622bef606ad8dfbb24..4b2004db941effd0ed3eb35d527268f729e3350d 100644 (file)
--- a/isdn.c
+++ b/isdn.c
@@ -1,4 +1,4 @@
-/* $Id: isdn.c,v 1.9 2001/05/27 07:19:28 reinelt Exp $
+/* $Id: isdn.c,v 1.10 2003/06/21 05:46:18 reinelt Exp $
  *
  * ISDN specific functions
  *
@@ -20,6 +20,9 @@
  *
  *
  * $Log: isdn.c,v $
+ * Revision 1.10  2003/06/21 05:46:18  reinelt
+ * DVB client integrated
+ *
  * Revision 1.9  2001/05/27 07:19:28  reinelt
  *
  * fixed a warning in pixmap.c
@@ -154,7 +157,7 @@ int Isdn (int *rx, int *tx, int *usage)
       error ("open(/dev/isdninfo) failed: %s", strerror(errno));
       return -1;
     }
-    debug ("open (/proc/isdninfo)=%d", fd);
+    debug ("open (/dev/isdninfo)=%d", fd);
   }
 
   if (ioctl(fd, IIOCGETCPS, &cps)) {
index cc12e6fe6071e2028138379158f13ddd54eaca24..61da7861292b71079c51a802a0461d26644cba39 100644 (file)
--- a/parser.c
+++ b/parser.c
@@ -1,4 +1,4 @@
-/* $Id: parser.c,v 1.18 2002/12/05 19:23:01 reinelt Exp $
+/* $Id: parser.c,v 1.19 2003/06/21 05:46:18 reinelt Exp $
  *
  * row definition parser
  *
@@ -20,6 +20,9 @@
  *
  *
  * $Log: parser.c,v $
+ * Revision 1.19  2003/06/21 05:46:18  reinelt
+ * DVB client integrated
+ *
  * Revision 1.18  2002/12/05 19:23:01  reinelt
  * fixed undefined operations found by gcc3
  *
@@ -174,6 +177,8 @@ static SYMTAB Symtab[] = {{ "%",  T_PERCENT,    C_GENERIC, 0 },
                          { "bp", T_BATT_PERC,  C_BATT,    1 },
                          { "bs", T_BATT_STAT,  C_BATT,    0 },
                          { "bd", T_BATT_DUR,   C_BATT,    0 },
+                         { "ss", T_DVB_STRENGTH, C_DVB,   1 },
+                         { "sn", T_DVB_SNR,    C_DVB,     1 },
                          { "e*", T_MAIL,       C_MAIL,    0 },
                          { "u*", T_MAIL_UNSEEN,C_MAIL,    0 },
                          { "s*", T_SENSOR,     C_SENSOR,  1 },
index 6feba13200077c724707cd5b503f8086c1e0f0e6..65ae689485467ff27094816b1182e9b2679c2e78 100644 (file)
--- a/parser.h
+++ b/parser.h
@@ -1,4 +1,4 @@
-/* $Id: parser.h,v 1.11 2001/03/14 13:19:29 ltoetsch Exp $
+/* $Id: parser.h,v 1.12 2003/06/21 05:46:18 reinelt Exp $
  *
  * row definition parser
  *
@@ -20,6 +20,9 @@
  *
  *
  * $Log: parser.h,v $
+ * Revision 1.12  2003/06/21 05:46:18  reinelt
+ * DVB client integrated
+ *
  * Revision 1.11  2001/03/14 13:19:29  ltoetsch
  * Added pop3/imap4 mail support
  *
@@ -86,15 +89,15 @@ typedef enum {
   T_ISDN_USED, T_ISDN_IN, T_ISDN_OUT, T_ISDN_TOTAL, T_ISDN_MAX,
   T_SETI_PRC, T_SETI_CPU,
   T_BATT_PERC, T_BATT_STAT, T_BATT_DUR,
+  T_DVB_STRENGTH, T_DVB_SNR,
   T_EXTENDED,
   T_MAIL, T_MAIL_UNSEEN,
   T_SENSOR,
-  T_EXEC  
+  T_EXEC
 } TOKEN;
 
 typedef enum {
-  C_GENERIC, C_MEM, C_LOAD, C_CPU, C_DISK, C_ETH, C_PPP, C_ISDN, C_SETI, 
-  C_BATT,  
+  C_GENERIC, C_MEM, C_LOAD, C_CPU, C_DISK, C_ETH, C_PPP, C_ISDN, C_SETI, C_BATT, C_DVB,
   C_MAIL, C_SENSOR, C_EXEC
 } CLASS;
 
index 5df882dc729a9fe553faae48c3e26a91f5fdcd1b..580c33ef2dfd6c0dacb72c1c70eec13a0dea844b 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: processor.c,v 1.31 2003/06/13 06:35:56 reinelt Exp $
+/* $Id: processor.c,v 1.32 2003/06/21 05:46:18 reinelt Exp $
  *
  * main data processing
  *
@@ -20,6 +20,9 @@
  *
  *
  * $Log: processor.c,v $
+ * Revision 1.32  2003/06/21 05:46:18  reinelt
+ * DVB client integrated
+ *
  * Revision 1.31  2003/06/13 06:35:56  reinelt
  * added scrolling capability
  *
 #include "processor.h"
 #include "mail.h"
 #include "battery.h"
+#include "dvb.h"
 #include "seti.h"
 #include "exec.h"
 
@@ -199,6 +203,7 @@ static struct { int perc, stat; double dur; } batt;
 static struct { double perc, cput; } seti;
 static struct { int num, unseen;} mail[MAILBOXES+1];
 static struct { double val, min, max; } sensor[SENSORS+1];
+static struct { double strength, snr; } dvb;
 
 static double query (int token)
 {
@@ -287,6 +292,11 @@ static double query (int token)
   case T_BATT_DUR:
     return batt.dur;
     
+  case T_DVB_STRENGTH:
+    return dvb.strength;
+  case T_DVB_SNR:
+    return dvb.snr;
+
   case T_MAIL:
     return mail[(token>>8)-'0'].num;
 
@@ -298,6 +308,7 @@ static double query (int token)
 
   case T_EXEC:
     return exec[(token>>8)-'0'].val;
+
   }
   return 0.0;
 }
@@ -363,6 +374,7 @@ static double query_bar (int token)
        value = 0;
       return value/100;
     }
+
   case T_SENSOR:
     i=(token>>8)-'0';
     return (value-sensor[i].min)/(sensor[i].max-sensor[i].min);
@@ -376,27 +388,35 @@ static void print_token (int token, char **p, char *start, int maxlen)
   int i;
   
   switch (token & 255) {
+
   case T_PERCENT:
     *(*p)++='%';
     break;
+
   case T_DOLLAR:
     *(*p)++='$';
     break;
+
   case T_OS:
     *p+=sprintf (*p, "%s", System());
     break;
+
   case T_RELEASE:
     *p+=sprintf (*p, "%s", Release());
     break;
+
   case T_CPU:
     *p+=sprintf (*p, "%s", Processor());
     break;
+
   case T_RAM:
     *p+=sprintf (*p, "%d", Memory());
     break;
+
   case T_OVERLOAD:
     *(*p)++=load.load1>load.overload?'!':' ';
     break;
+
   case T_MEM_TOTAL:
   case T_MEM_USED:
   case T_MEM_FREE:
@@ -406,6 +426,7 @@ static void print_token (int token, char **p, char *start, int maxlen)
   case T_MEM_AVAIL:
     *p+=sprintf (*p, "%6.0f", query(token));
     break;
+
   case T_LOAD_1:
   case T_LOAD_2:
   case T_LOAD_3:
@@ -418,6 +439,7 @@ static void print_token (int token, char **p, char *start, int maxlen)
     else
       *p+=sprintf (*p, "%5.0f", val);
     break;
+
   case T_CPU_USER:
   case T_CPU_NICE:
   case T_CPU_SYSTEM:
@@ -425,6 +447,7 @@ static void print_token (int token, char **p, char *start, int maxlen)
   case T_CPU_IDLE:
     *p+=sprintf (*p, "%3.0f", 100.0*query(token));
     break;
+
   case T_ETH_RX:
   case T_ETH_TX:
   case T_ETH_MAX:
@@ -434,6 +457,7 @@ static void print_token (int token, char **p, char *start, int maxlen)
       val/=1024.0;
     *p+=sprintf (*p, "%5.0f", val);
     break;
+
   case T_ISDN_IN:
   case T_ISDN_OUT:
   case T_ISDN_MAX:
@@ -443,12 +467,14 @@ static void print_token (int token, char **p, char *start, int maxlen)
     else
       *p+=sprintf (*p, " ----");
     break;
+
   case T_ISDN_USED:
     if (isdn.usage)
       *p+=sprintf (*p, "*");
     else
       *p+=sprintf (*p, " ");
     break;
+
   case T_SETI_PRC:
     val=100.0*query(token);
     if (val<100.0) 
@@ -497,6 +523,11 @@ static void print_token (int token, char **p, char *start, int maxlen)
     }
     break;
 
+  case T_DVB_STRENGTH:
+  case T_DVB_SNR:
+    *p+=sprintf (*p, "%5.1f", 100.0*query(token));
+    break;
+
   case T_EXEC:
     i = (token>>8)-'0';
     *p+=sprintf (*p, "%.*s",cols-(*p-start), exec[i].s);
@@ -567,6 +598,10 @@ static void collect_data (void)
     Battery (&batt.perc, &batt.stat, &batt.dur);
   }
   
+  if (token_usage[C_DVB]) {
+    DVB (&dvb.strength, &dvb.snr);
+  }
+  
   for (i=0; i<=MAILBOXES; i++) {
     if (token_usage[T_MAIL]&(1<<i) || token_usage[T_MAIL_UNSEEN]&(1<<i) ) {
       Mail (i, &mail[i].num, &mail[i].unseen);
@@ -584,6 +619,7 @@ static void collect_data (void)
       Exec (i, exec[i].s, &exec[i].val);
     }
   }
+
 }
 
 static char *process_row (int r)