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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
|
/*************************************************************************
* Telematics Data Logger Class
* Distributed under BSD license
* Written by Stanley Huang <support@freematics.com.au>
* Visit http://freematics.com for more information
*************************************************************************/
// additional custom PID for data logger
#define PID_DATA_SIZE 0x80
#if ENABLE_DATA_LOG
File sdfile;
#endif
class CDataLogger {
public:
CDataLogger():m_lastDataTime(0),dataTime(0),dataSize(0)
{
#if ENABLE_DATA_CACHE
cacheBytes = 0;
#endif
}
void initSender()
{
#if ENABLE_DATA_OUT
Serial.begin(STREAM_BAUDRATE);
#endif
}
byte genTimestamp(char* buf, bool absolute)
{
byte n;
if (absolute || dataTime >= m_lastDataTime + 60000) {
// absolute timestamp
n = sprintf_P(buf, PSTR("#%lu,"), dataTime);
} else {
// relative timestamp
uint16_t elapsed = (unsigned int)(dataTime - m_lastDataTime);
n = sprintf_P(buf, PSTR("%u,"), elapsed);
}
return n;
}
void record(const char* buf, byte len)
{
#if ENABLE_DATA_LOG
char tmp[12];
byte n = genTimestamp(tmp, dataSize == 0);
dataSize += sdfile.write((uint8_t*)tmp, n);
dataSize += sdfile.write(buf, len);
sdfile.write('\n');
dataSize++;
#endif
m_lastDataTime = dataTime;
}
void dispatch(const char* buf, byte len)
{
#if ENABLE_DATA_CACHE
// reserve some space for timestamp, ending white space and zero terminator
int l = cacheBytes + len + 12 - CACHE_SIZE;
if (l >= 0) {
// cache full
#if CACHE_SHIFT
// discard the oldest data
for (l = CACHE_SIZE / 2; cache[l] && cache[l] != ' '; l++);
if (cache[l]) {
cacheBytes -= l;
memcpy(cache, cache + l + 1, cacheBytes);
} else {
cacheBytes = 0;
}
#else
return;
#endif
}
// add new data at the end
byte n = genTimestamp(cache + cacheBytes, cacheBytes == 0);
if (n == 0) {
// same timestamp
cache[cacheBytes - 1] = ';';
} else {
cacheBytes += n;
cache[cacheBytes++] = ',';
}
if (cacheBytes + len < CACHE_SIZE - 1) {
memcpy(cache + cacheBytes, buf, len);
cacheBytes += len;
cache[cacheBytes++] = ' ';
}
cache[cacheBytes] = 0;
#else
//char tmp[12];
//byte n = genTimestamp(tmp, dataTime >= m_lastDataTime + 100);
//Serial.write(tmp, n);
#endif
#if ENABLE_DATA_OUT
Serial.write((uint8_t*)buf, len);
Serial.println();
#endif
}
void logData(const char* buf, byte len)
{
dispatch(buf, len);
record(buf, len);
}
void logData(uint16_t pid)
{
char buf[8];
byte len = translatePIDName(pid, buf);
dispatch(buf, len);
record(buf, len);
}
void logData(uint16_t pid, int16_t value)
{
char buf[16];
byte n = translatePIDName(pid, buf);
byte len = sprintf_P(buf + n, PSTR("%d"), value) + n;
dispatch(buf, len);
record(buf, len);
}
void logData(uint16_t pid, int32_t value)
{
char buf[20];
byte n = translatePIDName(pid, buf);
byte len = sprintf_P(buf + n, PSTR("%ld"), value) + n;
dispatch(buf, len);
record(buf, len);
}
void logData(uint16_t pid, uint32_t value)
{
char buf[20];
byte n = translatePIDName(pid, buf);
byte len = sprintf_P(buf + n, PSTR("%lu"), value) + n;
dispatch(buf, len);
record(buf, len);
}
void logData(uint16_t pid, int value1, int value2, int value3)
{
char buf[24];
byte n = translatePIDName(pid, buf);
n += sprintf_P(buf + n, PSTR("%d,%d,%d"), value1, value2, value3);
dispatch(buf, n);
record(buf, n);
}
void logCoordinate(uint16_t pid, int32_t value)
{
char buf[24];
byte len = translatePIDName(pid, buf);
len += sprintf_P(buf + len, PSTR("%d.%06lu"), (int)(value / 1000000), abs(value) % 1000000);
dispatch(buf, len);
record(buf, len);
}
#if ENABLE_DATA_LOG
uint16_t openFile(uint32_t dateTime = 0)
{
uint16_t fileIndex;
char path[20] = "/DATA";
dataSize = 0;
if (SD.exists(path)) {
if (dateTime) {
// using date and time as file name
sprintf(path + 5, "/%08lu.CSV", dateTime);
fileIndex = 1;
} else {
// use index number as file name
for (fileIndex = 1; fileIndex; fileIndex++) {
sprintf(path + 5, "/DAT%05u.CSV", fileIndex);
if (!SD.exists(path)) {
break;
}
}
if (fileIndex == 0)
return 0;
}
} else {
SD.mkdir(path);
fileIndex = 1;
sprintf(path + 5, "/DAT%05u.CSV", 1);
}
sdfile = SD.open(path, FILE_WRITE);
if (!sdfile) {
return 0;
}
return fileIndex;
}
void closeFile()
{
sdfile.close();
dataSize = 0;
}
void flushFile()
{
sdfile.flush();
}
#endif
uint32_t dataTime;
uint32_t dataSize;
#if ENABLE_DATA_CACHE
void purgeCache()
{
cacheBytes = 0;
}
char cache[CACHE_SIZE];
int cacheBytes;
#endif
private:
byte translatePIDName(uint16_t pid, char* text)
{
return sprintf_P(text, PSTR("%X,"), pid);
}
uint32_t m_lastDataTime;
};
|