-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGPIOWire.cpp
377 lines (302 loc) · 8.27 KB
/
GPIOWire.cpp
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
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
#include <assert.h>
#include "Arduino.h"
#include "CRC.hpp"
#include "GPIOWire.hpp"
#include "Logger.hpp"
namespace GPIOWire {
/***********/
/* Private */
/***********/
enum class BufferStatus
{
WaitingForSTX = 0,
WaitingForETX = 1,
MessageDecoded = 2,
MessageGot = 3,
Overflow = 4
};
enum class DecoderStatus
{
WaitingForSync = 0,
WaitingForData = 1,
Decoding = 2
};
bool m_bStarted = false;
unsigned int m_nBitMidPoint;
unsigned int m_nBitLowPoint;
unsigned int m_nSyncMidPoint;
volatile unsigned long m_nLastSampling;
volatile uint8_t m_nDecodedBits;
volatile unsigned int m_nDecodedBytes;
volatile DecoderStatus m_eDecoderStatus;
volatile uint8_t m_nDecodingData;
GPIOWireBuffer m_lpBuffer;
volatile unsigned int m_nBufferIndex;
unsigned int m_nBufferSize;
volatile BufferStatus m_eBufferStatus;
char m_cSTX;
char m_cETX;
LOG_DECLARE_BUFFER();
inline void ProcessDecodedData(char cData)
{
switch (m_eBufferStatus)
{
case BufferStatus::WaitingForSTX :
if (cData == m_cSTX)
{
m_eBufferStatus = BufferStatus::WaitingForETX;
#if DECODER_LOG_LEVEL & DECODER_LOG_MASK_BUFFER
LOG("Wire: STX.");
#endif
}
m_nBufferIndex = 0;
break;
case BufferStatus::WaitingForETX :
if (cData == m_cETX)
{
Stop();
m_eBufferStatus = BufferStatus::MessageDecoded;
#if DECODER_LOG_LEVEL & DECODER_LOG_MASK_BUFFER
LOG("Wire: ETX.");
#endif
}
else if (m_nBufferIndex >= (m_nBufferSize - 1))
{
Stop();
m_eBufferStatus = BufferStatus::Overflow;
#if DECODER_LOG_LEVEL & DECODER_LOG_MASK_BUFFER
LOG("GPIOWire: buffer overflow!");
#endif
}
else
{
m_lpBuffer[m_nBufferIndex] = cData;
m_nBufferIndex++;
if (m_nBufferIndex < (m_nBufferSize - 1))
{
#if DECODER_LOG_LEVEL & DECODER_LOG_MASK_BUFFER
LOG_FMT(
"Wire: char added (size %d).",
m_nBufferIndex
);
#endif
}
else
{
Stop();
m_eBufferStatus = BufferStatus::MessageDecoded;
#if DECODER_LOG_LEVEL & DECODER_LOG_MASK_BUFFER
LOG("Wire: char appended (full).");
#endif
}
}
break;
default:
// Avoid Sloeber / Eclipse warnings for not handled cases.
break;
}
}
void OnInterrupt()
{
if (m_bStarted)
{
// Capture time slice
unsigned long nCurrentTime = micros();
unsigned long nPulseDuration = nCurrentTime - m_nLastSampling;
#if DECODER_LOG_LEVEL & DECODER_LOG_MASK_PULSE
LOG_FMT("Wire: pulse %lu uS.", nPulseDuration);
#endif
m_nLastSampling = nCurrentTime;
// Decoding...
if (nPulseDuration >= m_nSyncMidPoint)
{
// Received Sync pulse
#if DECODER_LOG_LEVEL & DECODER_LOG_MASK_SYNC
LOG_FMT("Wire: sync (%lu uS).", nPulseDuration);
#endif
m_eDecoderStatus = DecoderStatus::WaitingForData;
m_nDecodedBits = 0;
m_nDecodingData = 0;
}
else if (nPulseDuration < m_nBitLowPoint)
{
// Received noise pulse
#if DECODER_LOG_LEVEL & DECODER_LOG_MASK_NOISE
LOG_FMT(
"Wire: noise (%lu uS).",
nPulseDuration
);
#endif
m_eDecoderStatus = DecoderStatus::WaitingForSync;
m_nDecodedBits = 0;
m_nDecodingData = 0;
}
else
{
// Decode bits
if (m_nDecodedBits < 8)
{
// Decode bit
m_nDecodedBits++;
m_eDecoderStatus = DecoderStatus::Decoding;
unsigned char nBitValue = ((nPulseDuration < m_nBitMidPoint) ? 0 : 1);
#if DECODER_LOG_LEVEL & DECODER_LOG_MASK_BIT
LOG_FMT(
"Wire: bit #%i = %d (%lu uS).",
m_nDecodedBits,
nBitValue,
nPulseDuration
);
#endif
m_nDecodingData <<= 1;
m_nDecodingData |= nBitValue;
}
if (8 == m_nDecodedBits)
{
// Store completed byte
#if DECODER_LOG_LEVEL & DECODER_LOG_MASK_CHAR
LOG_FMT(
"Wire: byte %d (0x%02X) '%c'.",
m_nDecodingData,
m_nDecodingData,
(char)m_nDecodingData
);
#endif
ProcessDecodedData(m_nDecodingData);
m_eDecoderStatus = DecoderStatus::WaitingForSync;
m_nDecodedBits = 0;
m_nDecodingData = 0;
}
}
}
}
bool ValidateCRC()
{
if (m_nBufferIndex < 2)
{
#if DECODER_LOG_LEVEL & DECODER_LOG_MASK_CRC_ERROR
LOG("Wire: bad CRC, invalid buffer size.");
#endif
return false;
}
uint16_t nCalculatedCRC = CRC16(
(const unsigned char*)m_lpBuffer,
(m_nBufferIndex - 2)
);
uint16_t nPassedCRC =
((unsigned char)m_lpBuffer[m_nBufferIndex - 2] << 8)
| (unsigned char)m_lpBuffer[m_nBufferIndex - 1]
;
#if DECODER_LOG_LEVEL & DECODER_LOG_MASK_CRC_CALC
LOG_FMT("Wire: CRC (passed = 0x%04X, calc = 0x%04X).",
nPassedCRC,
nCalculatedCRC
);
#endif
bool bValid = (nPassedCRC == nCalculatedCRC);
#if DECODER_LOG_LEVEL & DECODER_LOG_MASK_CRC_ERROR
if (!bValid)
{
LOG_FMT(
"Wire: bad CRC (passed = 0x%04X, calc = 0x%04X).",
nPassedCRC,
nCalculatedCRC
);
};
#endif
if (bValid)
{
m_nBufferIndex -= 2;
}
return bValid;
}
/**********/
/* Public */
/**********/
MessageResult GetMessage(GPIOWireBuffer& lpMessage, bool bValidateCRC)
{
if (BufferStatus::MessageDecoded != m_eBufferStatus)
{
return MessageResult::NotYetAvailable;
}
m_eBufferStatus = BufferStatus::MessageGot;
if (bValidateCRC && !ValidateCRC())
{
return MessageResult::BadCRC;
}
memcpy(lpMessage, m_lpBuffer, m_nBufferIndex);
lpMessage[m_nBufferIndex] = '\0';
return MessageResult::Valid;
}
bool HasMessage()
{
return (BufferStatus::MessageDecoded == m_eBufferStatus);
}
bool IsStarted()
{
return m_bStarted;
}
void Initialize(
unsigned int nInterruptPin,
unsigned int nBitZero,
unsigned int nBitOne,
unsigned int nSyncBit,
bool bPullUp,
char cSTX,
char cETX
)
{
assert(nBitZero > 0);
assert(nBitOne > nBitZero);
assert(nSyncBit > nBitOne);
m_cSTX = cSTX;
m_cETX = cETX;
m_nBitMidPoint = ((nBitOne + nBitZero) / 2);
m_nBitLowPoint = (nBitZero - (m_nBitMidPoint - nBitZero));
m_nSyncMidPoint = ((nSyncBit + nBitOne) / 2);
#if DECODER_LOG_LEVEL & DECODER_LOG_MASK_CONTROLLER
LOG_FMT("Wire: bit 0 = %lu us.", nBitZero);
LOG_FMT("Wire: bit 1 = %lu us.", nBitOne);
LOG_FMT("Wire: bit S = %lu us.", nSyncBit);
LOG_FMT("Wire: bit low pt = %lu us.", m_nBitLowPoint);
LOG_FMT("Wire: bit mid pt = %lu us.", m_nBitMidPoint);
LOG_FMT("Wire: sync mid pt = %lu us.", m_nSyncMidPoint);
#endif
Stop();
pinMode(
nInterruptPin,
(bPullUp ? INPUT_PULLUP : INPUT)
);
attachInterrupt(
digitalPinToInterrupt(nInterruptPin),
OnInterrupt,
FALLING
);
}
void Start()
{
Stop();
m_nDecodingData = 0;
m_nDecodedBits = 0,
m_nDecodedBytes = 0;
m_eDecoderStatus = DecoderStatus::WaitingForSync;
m_nBufferIndex = 0;
m_nBufferSize = (DECODER_BUFFER_SIZE - 1 /* Leave room for \0 */);
m_eBufferStatus = BufferStatus::WaitingForSTX;
m_nLastSampling = micros();
m_bStarted = true;
#if DECODER_LOG_LEVEL & DECODER_LOG_MASK_CONTROLLER
LOG("Wire: started.");
#endif
}
void Stop()
{
if (m_bStarted)
{
m_bStarted = false;
#if DECODER_LOG_LEVEL & DECODER_LOG_MASK_CONTROLLER
LOG("Wire: stopped.");
#endif
}
}
}