]> git.itanic.dy.fi Git - log-plotter/blobdiff - data.h
data.c: Implement initial support for handling multiple data channels
[log-plotter] / data.h
diff --git a/data.h b/data.h
index 459ee66c023b58990c074411cfab0ae7039d7d65..b9c04c96dd52eddd992e94c1c13c5139825a027f 100644 (file)
--- a/data.h
+++ b/data.h
@@ -1,10 +1,12 @@
 #ifndef _DATA_H_
 #define _DATA_H_
 
+#include "config.h"
+
 #define MAX_CELLS 10
 
 struct charger_data {
-       int channel;
+       unsigned int channel;
        int state;
        double timestamp;       /* seconds since beginning of the charging */
        double input_voltage;
@@ -17,6 +19,6 @@ struct charger_data {
        double ext_temp;
 };
 
-int read_data(int infd, int outfd);
+int init_data_parser(int infd, struct plotter_config *cfg);
 
 #endif