summaryrefslogtreecommitdiff
path: root/unologger/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'unologger/config.h')
-rw-r--r--unologger/config.h42
1 files changed, 0 insertions, 42 deletions
diff --git a/unologger/config.h b/unologger/config.h
deleted file mode 100644
index 76b4dbe..0000000
--- a/unologger/config.h
+++ /dev/null
@@ -1,42 +0,0 @@
-#ifndef CONFIG_H_INCLUDED
-#define CONFIG_H_INCLUDED
-
-/**************************************
-* Choose model of OBD-II Adapter
-**************************************/
-// OBD_MODEL_I2C for I2C version
-// OBD_MODEL_UART for UART version
-#define OBD_MODEL OBD_MODEL_UART
-#define OBD_PROTOCOL PROTO_AUTO
-
-/**************************************
-* Data logging options
-**************************************/
-// enable(1)/disable(0) data logging (if SD card is present)
-#define ENABLE_DATA_LOG 1
-#define SD_CS_PIN 10
-
-/**************************************
-* Data streaming options
-**************************************/
-// data streaming is not supported on Arduino UNO
-#define ENABLE_DATA_OUT 0
-
-/**************************************
-* Accelerometer & Gyro
-**************************************/
-//#define USE_MPU6050 1
-//#define USE_MPU9150 1
-
-/**************************************
-* Timeout/interval options
-**************************************/
-#define OBD_MIN_INTERVAL 20 /* ms */
-
-/**************************************
-* LCD module (uncomment only one)
-**************************************/
-LCD_ILI9341 lcd; /* 2.4" ILI9341 based SPI TFT LCD */
-//LCD_Null lcd;
-
-#endif