forked from mikaelpatel/Arduino-OWI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
OWI.h
411 lines (377 loc) · 9.61 KB
/
OWI.h
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
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
/**
* @file Slave/OWI.h
* @version 1.0
*
* @section License
* Copyright (C) 2017, Mikael Patel
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*/
#ifndef SLAVE_OWI_H
#define SLAVE_OWI_H
#include "GPIO.h"
/**
* One Wire Interface (OWI) Slave Device template class using GPIO.
* Allows emulation of One Wire devices, and basic low-speed
* communication between boards. Supports the standard ROM commands,
* and fast addressing.
* @param[in] PIN board pin for 1-wire bus.
*/
namespace Slave {
template<BOARD::pin_t PIN>
class OWI {
public:
/** One Wire device identity ROM size in bytes. */
static const size_t ROM_MAX = 8;
/** One Wire device identity ROM size in bits. */
static const size_t ROMBITS = ROM_MAX * 8;
/**
* Construct one wire bus slave device connected to the given
* template pin parameter, and rom identity code. Cyclic redundancy
* check sum is generated for given rom identity code.
* @param[in] rom identity code (program memory).
*/
OWI(const uint8_t* rom) :
m_timestamp(0),
m_label(255),
m_alarm(false)
{
uint8_t crc = 0;
for (size_t i = 0; i < ROM_MAX - 1; i++) {
uint8_t data = pgm_read_byte(rom++);
m_rom[i] = data;
crc = crc_update(crc, data);
}
m_rom[ROM_MAX - 1] = crc;
m_pin.open_drain();
}
/**
* Construct one wire bus slave device connected to the given
* template pin parameter, and family code. Random identity code
* is generated.
* @param[in] family code
*/
OWI(uint8_t family) :
m_timestamp(0),
m_label(255),
m_alarm(false)
{
uint8_t crc = crc_update(0, family);
uint8_t* p = 0;
m_rom[0] = family;
for (size_t i = 1; i < ROM_MAX - 1; i++) {
uint8_t data = *p++;
m_rom[i] = data;
crc = crc_update(crc, data);
}
m_rom[ROM_MAX - 1] = crc;
m_pin.open_drain();
}
/**
* Get cyclic redundancy check sum. Calculated by buffer read() and
* write().
* @return crc.
*/
uint8_t crc()
{
return (m_crc);
}
/**
* Set cyclic redundancy check sum.
* @param[in] value to set.
*/
void crc(uint8_t value)
{
m_crc = value;
}
/**
* Get alarm setting.
* @return alarm setting.
*/
bool alarm()
{
return (m_alarm);
}
/**
* Set alarm to given value.
* @param[in] value alarm setting.
*/
void alarm(bool value)
{
m_alarm = value;
}
/**
* Check for reset signal. Return true(1) if reset was detected and
* presence was signaled, otherwise false(0).
* @return true(1) on reset and presence, otherwise false(0).
*/
bool reset()
{
// Check reset start
if (m_timestamp == 0) {
if (!m_pin) m_timestamp = micros();
return (false);
}
// Check reset pulse stop
if (!m_pin) return (false);
// Check reset pulse width
if (micros() - m_timestamp < 410) {
m_timestamp = 0;
return (false);
}
// Generate presence signal
m_pin.output();
delayMicroseconds(100);
m_pin.input();
// Wait for possible presence signals from other devices
while (!m_pin);
m_timestamp = 0;
return (true);
}
/**
* Read bits from one wire bus master. Default number of bits is 8.
* Calculate intermediate cyclic redundancy check sum.
* @param[in] bits to be read.
* @return value read.
*/
uint8_t read(uint8_t bits = 8)
{
uint8_t adjust = 8 - bits;
uint8_t res = 0;
uint8_t mix = 0;
do {
noInterrupts();
// Wait for bit start
while (m_pin);
// Delay to sample bit value
delayMicroseconds(20);
res >>= 1;
if (m_pin) {
res |= 0x80;
mix = (m_crc ^ 1);
}
else {
mix = (m_crc ^ 0);
}
interrupts();
// Calculate cyclic redundancy check sum
m_crc >>= 1;
if (mix & 1) m_crc ^= 0x8C;
// Wait for bit end (max 50 us)
uint8_t count = 255;
while (!m_pin && --count);
if (count == 0) return (0);
} while (--bits);
res >>= adjust;
return (res);
}
/**
* Read given number of bytes from one wire bus master to given
* buffer. Calculate intermediate cyclic redundancy check sum,
* and return validation (should be zero).
* @param[in] buf buffer pointer.
* @param[in] count number of bytes to read.
* @return true(1) if check sum is correct otherwise false(0).
*/
bool read(void* buf, size_t count)
{
// Write bytes and calculate crc
uint8_t* bp = (uint8_t*) buf;
m_crc = 0;
do {
uint8_t value = read();
*bp++ = value;
} while (--count);
// Return crc validation
return (m_crc == 0);
}
/**
* Write bits to one wire bus master. The bits are written from LSB
* to MSB. Default number of bits is 8. Calculate intermediate
* cyclic redundancy check sum.
* @param[in] value to write.
* @param[in] bits to be written.
*/
void write(uint8_t value, uint8_t bits = 8)
{
uint8_t mix = 0;
do {
noInterrupts();
// Wait for bit start
while (m_pin);
// Streck low if bit is zero
if ((value & 0x01) == 0) {
m_pin.output();
delayMicroseconds(20);
m_pin.input();
mix = (m_crc ^ 0);
}
else {
mix = (m_crc ^ 1);
}
interrupts();
value >>= 1;
// Calculate cyclic redundancy check sum
m_crc >>= 1;
if (mix & 1) m_crc ^= 0x8C;
// Wait for bit end (max 50 us)
uint8_t count = 255;
while (!m_pin && --count);
if (count == 0) return;
} while (--bits);
}
/**
* Write bytes to one wire bus master. Calculates and writes 1-wire
* cyclic redundancy checksum last.
* @param[in] buf buffer to write.
* @param[in] count number of bytes to write.
*/
void write(const void* buf, size_t count)
{
// Write bytes and calculate cyclic redundancy check-sum
const uint8_t* bp = (const uint8_t*) buf;
m_crc = 0;
do {
uint8_t value = *bp++;
write(value);
} while (--count);
// Write calculated crc
write(m_crc);
}
/**
* Write bit and inverse bit. Return read bit.
* @param[in] bit to write.
* @return bit read.
*/
bool triplet(bool bit)
{
write(bit, 1);
write(!bit, 1);
return (read(1));
}
/**
* Standard 1-Wire ROM Commands.
*/
enum {
SEARCH_ROM = 0xF0, //!< Initiate device search.
READ_ROM = 0x33, //!< Read device family code and serial number.
MATCH_ROM = 0x55, //!< Select device with 64-bit rom code.
SKIP_ROM = 0xCC, //!< Broadcast or single device.
ALARM_SEARCH = 0xEC, //!< Initiate device alarm search.
LABEL_ROM = 0x15, //!< Set short address (8-bit).
READ_LABEL = 0x16, //!< Get 8-bit short address.
MATCH_LABEL = 0x51 //!< Select device with 8-bit short address.
} __attribute__((packed));
/**
* Check for reset and standard rom commands. Returns true(1) if
* the device was selected and extended command will follow,
* otherwise false(0).
* @return true(1) on extended command will follow, otherwise false(0).
*/
bool rom_command()
{
// Wait for reset
if (!reset()) return (false);
// Standard ROM commands
switch (read()) {
case READ_ROM:
// Write ROM to master
write(m_rom, ROM_MAX - 1);
return (false);
case MATCH_ROM:
// Match ROM from master
for (size_t i = 0; i < ROM_MAX; i++)
if (m_rom[i] != read())
return (false);
case SKIP_ROM:
// Skip ROM, extended command will follow
return (true);
case ALARM_SEARCH:
// Ignore search request if alarm is not set
if (!m_alarm)
return (false);
case SEARCH_ROM:
// Write ROM bit and check branching
for (size_t i = 0; i < ROM_MAX; i++) {
uint8_t value = m_rom[i];
uint8_t mask = 0x01;
do {
uint8_t bit = (mask & value) != 0;
bool dir = triplet(bit);
if (dir != bit) return (false);
mask <<= 1;
} while (mask);
}
return (true);
case MATCH_LABEL:
// Device label setting
if (m_label == read())
return (true);
default:
// Ignore all other commands
return (false);
};
}
/**
* Read command and filter label sub-commands. Returns command or
* zero(0).
* @return command.
*/
uint8_t read_command()
{
uint8_t cmd = read();
switch (cmd) {
case LABEL_ROM:
// Set device label
m_label = read();
return (0);
case READ_LABEL:
// Get device label
write(m_label);
return (0);
default:
return (cmd);
};
}
/**
* Optimized Dallas/Maxim iButton 8-bit Cyclic Redundancy Check
* calculation. Polynomial: x^8 + x^5 + x^4 + 1 (0x8C).
* See http://www.maxim-ic.com/appnotes.cfm/appnote_number/27
*/
static inline uint8_t crc_update(uint8_t crc, uint8_t data)
__attribute__((always_inline))
{
crc = crc ^ data;
uint8_t bits = 8;
do {
if (crc & 0x01)
crc = (crc >> 1) ^ 0x8C;
else
crc >>= 1;
} while (--bits);
return (crc);
}
protected:
/** 1-Wire bus pin. */
GPIO<PIN> m_pin;
/** Reset detect timestamp. */
uint32_t m_timestamp;
/** ROM identity code. */
uint8_t m_rom[ROM_MAX];
/** ROM label (short address). */
uint8_t m_label;
/** Alarm setting. */
bool m_alarm;
/** Intermediate cyclic redundancy check sum. */
uint8_t m_crc;
};
};
#endif