]> git.itanic.dy.fi Git - log-plotter/blobdiff - data.h
Implement state machine based architecture
[log-plotter] / data.h
diff --git a/data.h b/data.h
index 3034e0c62ad1999081b342dceb206cdd2d862c7d..6e286faed2c0ec0fd94033f03d88c5083610b493 100644 (file)
--- a/data.h
+++ b/data.h
@@ -1,6 +1,8 @@
 #ifndef _DATA_H_
 #define _DATA_H_
 
+#include "config.h"
+
 #define MAX_CELLS 10
 
 struct charger_data {
@@ -13,10 +15,10 @@ struct charger_data {
        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