summaryrefslogtreecommitdiff
path: root/megalogger/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'megalogger/config.h')
-rw-r--r--megalogger/config.h36
1 files changed, 36 insertions, 0 deletions
diff --git a/megalogger/config.h b/megalogger/config.h
new file mode 100644
index 0000000..d247475
--- /dev/null
+++ b/megalogger/config.h
@@ -0,0 +1,36 @@
+#ifndef CONFIG_H_INCLUDED
+#define CONFIG_H_INCLUDED
+
+// configurations
+/**************************************
+* Choose SD pin here
+**************************************/
+//#define SD_CS_PIN 4 // ethernet shield
+//#define SD_CS_PIN 7 // microduino
+//#define SD_CS_PIN 10 // SD breakout
+#define SD_CS_PIN SS
+
+/**************************************
+* Config GPS here
+**************************************/
+#define USE_GPS
+#define MAX_GPS_PROCESS_TIME 50 /* ms */
+#define GPS_BAUDRATE 38400 /* bps */
+//#define GPS_OPEN_BAUDRATE 4800 /* bps */
+
+/**************************************
+* Timeout/interval options
+**************************************/
+//#define OBD_MIN_INTERVAL 200 /* ms */
+#define ACC_DATA_INTERVAL 200 /* ms */
+#define GPS_DATA_TIMEOUT 2000 /* ms */
+
+/**************************************
+* Data logging/streaming options
+**************************************/
+#define ENABLE_DATA_OUT 1
+#define ENABLE_DATA_LOG 1
+#define USE_OBD_BT 1
+#define LOG_FORMAT FORMAT_CSV /* options: FORMAT_CSV, FORMAT_BIN */
+
+#endif