summaryrefslogtreecommitdiff
path: root/tester/config.h
blob: 5283f46bd634b01a1cf6179e5715c670cad4794c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#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_I2C
#define OBD_PROTOCOL PROTO_AUTO

/**************************************
* Accelerometer & Gyro
**************************************/
//#define USE_MPU6050 1
#define USE_MPU9150 1

/**************************************
* LCD module (uncomment only one)
**************************************/
LCD_ILI9341 lcd; /* 2.2" ILI9341 based SPI TFT LCD */
//LCD_SSD1289 lcd; /* 3.2" SSD12389 based TFT LCD */
//LCD_Null lcd;

/**************************************
* Benchmark option
**************************************/
#define OBD_BENCHMARK_TIME 5 /* seconds */
#define MEMS_BENCHMARK_TIME 3 /* seconds */

/**************************************
* Data streaming options
**************************************/
// enable(1)/disable(0) data streaming
#define ENABLE_DATA_OUT 1

#define DELAY_AFTER_SENDING 10

// uses software(1)/hardware(0) serial for data streaming
#define USE_SOFTSERIAL 0

// followings define the format of data streaming, enable one of them only
// FORMAT_BIN is required by Freematics OBD iOS App
//#define STREAM_FORMAT FORMAT_BIN
// FORMAT_CSV is for CSV based text output
//#define STREAM_FORMAT FORMAT_CSV
// FORMAT_LINE is for readable text output
#define STREAM_FORMAT FORMAT_TEXT

#define STREAM_BAUDRATE 115200

#endif