]> git.itanic.dy.fi Git - log-plotter/blobdiff - data.h
data.c: Reset time stamp when starting new log
[log-plotter] / data.h
diff --git a/data.h b/data.h
index 3034e0c62ad1999081b342dceb206cdd2d862c7d..0906e4cae24a3f40460837c9f4d5d869968bb877 100644 (file)
--- a/data.h
+++ b/data.h
@@ -1,22 +1,25 @@
 #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;
        double charging_voltage;
        double charging_current;
+       int cell_count;
        double cell_voltage[MAX_CELLS];
 
        double total_charge;    /* mAh */
-       double int_temp;        /* milli celsius */
+       double int_temp;        /* celsius */
        double ext_temp;
 };
 
-int read_data(int infd, int outfd);
+int init_data_parser(int infd, struct plotter_config *cfg);
 
 #endif