summaryrefslogtreecommitdiff
path: root/pbox/config.h
diff options
context:
space:
mode:
authorStanley Huang <stanleyhuangyc@gmail.com>2014-08-15 21:36:03 +1000
committerStanley Huang <stanleyhuangyc@gmail.com>2014-08-15 21:36:03 +1000
commit25851949cce42c297b8a5c6b4daf684196c78a01 (patch)
treef7c55cc1e0d00b2174586d66f8dddbe65333bff7 /pbox/config.h
parent881ba1dec955faaf052e55259d5f315e77781934 (diff)
download2021-arduino-obd-25851949cce42c297b8a5c6b4daf684196c78a01.tar.gz
2021-arduino-obd-25851949cce42c297b8a5c6b4daf684196c78a01.tar.bz2
2021-arduino-obd-25851949cce42c297b8a5c6b4daf684196c78a01.zip
Add NanoTimer
Diffstat (limited to 'pbox/config.h')
-rw-r--r--pbox/config.h50
1 files changed, 0 insertions, 50 deletions
diff --git a/pbox/config.h b/pbox/config.h
deleted file mode 100644
index bb026a4..0000000
--- a/pbox/config.h
+++ /dev/null
@@ -1,50 +0,0 @@
-#ifndef CONFIG_H_INCLUDED
-#define CONFIG_H_INCLUDED
-
-/**************************************
-* Data logging/streaming out
-**************************************/
-#define ENABLE_DATA_OUT 0
-#define ENABLE_DATA_LOG 1
-#define USE_SOFTSERIAL 0
-//this defines the format of log file
-#define LOG_FORMAT FORMAT_CSV
-
-/**************************************
-* Default working mode
-**************************************/
-#define MODE_DEFAULT MODE_LOGGER /* MODE_LOGGER/MODE_TIMER */
-//#define MODE_SWITCH_PIN 8
-
-/**************************************
-* Choose SD pin here
-**************************************/
-//#define SD_CS_PIN SS // generic
-//#define SD_CS_PIN 4 // ethernet shield
-//#define SD_CS_PIN 7 // microduino
-#define SD_CS_PIN 10 // SD breakout
-
-/**************************************
-* Config GPS here
-**************************************/
-#define USE_GPS 0
-#define GPS_BAUDRATE 38400 /* bps */
-//#define GPS_OPEN_BAUDRATE 4800 /* bps */
-
-/**************************************
-* Choose LCD model here
-**************************************/
-LCD_ILI9341 lcd;
-//LCD_SSD1306 lcd;
-//LCD_Null lcd;
-
-/**************************************
-* Other options
-**************************************/
-#define USE_MPU6050 0
-//#define OBD_MIN_INTERVAL 50 /* ms */
-#define GPS_DATA_TIMEOUT 2000 /* ms */
-//#define DEBUG Serial
-#define DEBUG_BAUDRATE 9600
-
-#endif // CONFIG_H_INCLUDED