summaryrefslogtreecommitdiff
path: root/unologger
diff options
context:
space:
mode:
Diffstat (limited to 'unologger')
-rw-r--r--unologger/config.h10
-rw-r--r--unologger/unologger.ino4
2 files changed, 6 insertions, 8 deletions
diff --git a/unologger/config.h b/unologger/config.h
index e5c8deb..75ac11b 100644
--- a/unologger/config.h
+++ b/unologger/config.h
@@ -1,19 +1,16 @@
#ifndef CONFIG_H_INCLUDED
#define CONFIG_H_INCLUDED
-#define OBD_MODEL_UART 0
-#define OBD_MODEL_I2C 1
-
/**************************************
* OBD-II options
**************************************/
-#define OBD_MODEL OBD_MODEL_I2C
+#define OBD_MODEL OBD_MODEL_UART
#define OBD_PROTOCOL 0 /* 0 for auto */
/**************************************
* Data logging/streaming out
**************************************/
-#define ENABLE_DATA_OUT 1
+#define ENABLE_DATA_OUT 0
#define ENABLE_DATA_LOG 0
#define USE_SOFTSERIAL 0
//this defines the format of log file
@@ -44,8 +41,7 @@ LCD_ILI9341 lcd;
/**************************************
* Other options
**************************************/
-#define USE_MPU6050 1
-#define GPS_DATA_TIMEOUT 2000 /* ms */
+#define USE_MPU6050 0
//#define DEBUG Serial
#define DEBUG_BAUDRATE 9600
diff --git a/unologger/unologger.ino b/unologger/unologger.ino
index c6db802..da93d79 100644
--- a/unologger/unologger.ino
+++ b/unologger/unologger.ino
@@ -19,12 +19,14 @@
#endif
#include "datalogger.h"
-// logger states
#define STATE_SD_READY 0x1
#define STATE_OBD_READY 0x2
#define STATE_ACC_READY 0x10
#define STATE_SLEEPING 0x20
+#define OBD_MODEL_UART 0
+#define OBD_MODEL_I2C 1
+
static uint32_t lastFileSize = 0;
static int speed = 0;
static uint32_t distance = 0;