forked from maxus-git/DS2482_OneWire
-
Notifications
You must be signed in to change notification settings - Fork 0
/
DOneWire.cpp
512 lines (438 loc) · 11 KB
/
DOneWire.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
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
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
#include "DOneWire.h"
#include <Wire.h>
#include <Arduino.h>
// Constructor with no parameters for compatability with DOneWire lib
DOneWire::DOneWire()
{
// Address is determined by two pins on the DS2482 AD1/AD0
// Pass 0b00, 0b01, 0b10 or 0b11
mAddress = 0x18;
mError = 0;
Wire.begin();
}
DOneWire::DOneWire(uint8_t address)
{
// Address is determined by two pins on the DS2482 AD1/AD0
// Pass 0b00, 0b01, 0b10 or 0b11
mAddress = 0x18 | address;
mError = 0;
Wire.begin();
}
DOneWire::DOneWire(uint8_t sdaPin, uint8_t sclPin)
{
// sdaPin and sclPin can override the default SCL and SDA
// pins on some hardware
// Address is determined by two pins on the DS2482 AD1/AD0
// Pass 0b00, 0b01, 0b10 or 0b11
mAddress = 0x18;
mError = 0;
Wire.begin(sdaPin, sclPin);
}
DOneWire::DOneWire(uint8_t sdaPin, uint8_t sclPin, uint8_t address)
{
// sdaPin and sclPin can override the default SCL and SDA
// pins on some hardware
// Address is determined by two pins on the DS2482 AD1/AD0
// Pass 0b00, 0b01, 0b10 or 0b11
mAddress = 0x18 | address;
mError = 0;
Wire.begin(sdaPin, sclPin);
}
uint8_t DOneWire::getAddress()
{
return mAddress;
}
uint8_t DOneWire::getError()
{
return mError;
}
// Helper functions to make dealing with I2C side easier
void DOneWire::begin()
{
Wire.beginTransmission(mAddress);
}
uint8_t DOneWire::end()
{
return Wire.endTransmission();
}
void DOneWire::writeByte(uint8_t data)
{
Wire.write(data);
}
uint8_t DOneWire::readByte()
{
Wire.requestFrom(mAddress, 1u);
return Wire.read();
}
// Simply starts and ends an Wire transmission
// If no devices are present, this returns false
uint8_t DOneWire::checkPresence()
{
begin();
return !end() ? true : false;
}
// Performs a global reset of device state machine logic. Terminates any ongoing 1-Wire communication.
void DOneWire::deviceReset()
{
begin();
write(DS2482_COMMAND_RESET);
end();
}
// Sets the read pointer to the specified register. Overwrites the read pointer position of any 1-Wire communication command in progress.
void DOneWire::setReadPointer(uint8_t readPointer)
{
begin();
writeByte(DS2482_COMMAND_SRP);
writeByte(readPointer);
end();
}
// Read the status register
uint8_t DOneWire::readStatus()
{
setReadPointer(DS2482_POINTER_STATUS);
return readByte();
}
// Read the data register
uint8_t DOneWire::readData()
{
setReadPointer(DS2482_POINTER_DATA);
return readByte();
}
// Read the config register
uint8_t DOneWire::readConfig()
{
setReadPointer(DS2482_POINTER_CONFIG);
return readByte();
}
void DOneWire::setStrongPullup()
{
writeConfig(readConfig() | DS2482_CONFIG_SPU);
}
void DOneWire::clearStrongPullup()
{
writeConfig(readConfig() & ~(1 << 2));
}
// Churn until the busy bit in the status register is clear
uint8_t DOneWire::waitOnBusy()
{
uint8_t status;
for (int i = 1000; i > 0; i--)
{
status = readStatus();
if (!(status & DS2482_STATUS_BUSY))
break;
delayMicroseconds(20);
}
// if we have reached this point and we are still busy, there is an error
if (status & DS2482_STATUS_BUSY)
mError = DS2482_ERROR_TIMEOUT;
// Return the status so we don't need to explicitly do it again
return status;
}
// Write to the config register
void DOneWire::writeConfig(uint8_t config)
{
waitOnBusy();
begin();
writeByte(DS2482_COMMAND_WRITECONFIG);
// Write the 4 bits and the complement 4 bits
writeByte(config | (~config) << 4);
end();
// This should return the config bits without the complement
if (readByte() != config)
mError = DS2482_ERROR_CONFIG;
}
// Generates a 1-Wire reset/presence-detect cycle (Figure 4) at the 1-Wire line. The state
// of the 1-Wire line is sampled at tSI and tMSP and the result is reported to the host
// processor through the Status Register, bits PPD and SD.
uint8_t DOneWire::wireReset()
{
waitOnBusy();
// Datasheet warns that reset with SPU set can exceed max ratings
clearStrongPullup();
waitOnBusy();
begin();
writeByte(DS2482_COMMAND_RESETWIRE);
end();
uint8_t status = waitOnBusy();
if (status & DS2482_STATUS_SD)
{
mError = DS2482_ERROR_SHORT;
}
return (status & DS2482_STATUS_PPD) ? true : false;
}
// Writes a single data byte to the 1-Wire line.
void DOneWire::wireWriteByte(uint8_t data, uint8_t power)
{
waitOnBusy();
if (power)
setStrongPullup();
begin();
writeByte(DS2482_COMMAND_WRITEBYTE);
writeByte(data);
end();
}
// Generates eight read-data time slots on the 1-Wire line and stores result in the Read Data Register.
uint8_t DOneWire::wireReadByte()
{
waitOnBusy();
begin();
writeByte(DS2482_COMMAND_READBYTE);
end();
waitOnBusy();
return readData();
}
// Generates a single 1-Wire time slot with a bit value “V” as specified by the bit byte at the 1-Wire line
// (see Table 2). A V value of 0b generates a write-zero time slot (Figure 5); a V value of 1b generates a
// write-one time slot, which also functions as a read-data time slot (Figure 6). In either case, the logic
// level at the 1-Wire line is tested at tMSR and SBR is updated.
void DOneWire::wireWriteBit(uint8_t data, uint8_t power)
{
waitOnBusy();
if (power)
setStrongPullup();
begin();
writeByte(DS2482_COMMAND_SINGLEBIT);
writeByte(data ? 0x80 : 0x00);
end();
}
// As wireWriteBit
uint8_t DOneWire::wireReadBit()
{
wireWriteBit(1);
uint8_t status = waitOnBusy();
return status & DS2482_STATUS_SBR ? 1 : 0;
}
// 1-Wire skip
void DOneWire::wireSkip()
{
wireWriteByte(WIRE_COMMAND_SKIP);
}
void DOneWire::wireSelect(const uint8_t rom[8])
{
wireWriteByte(WIRE_COMMAND_SELECT);
for (int i = 0; i < 8; i++)
wireWriteByte(rom[i]);
}
// 1-Wire reset seatch algorithm
void DOneWire::wireResetSearch()
{
searchLastDiscrepancy = -1;
searchLastDeviceFlag = 0;
for (int i = 0; i < 8; i++)
{
searchAddress[i] = 0;
}
}
// Perform a search of the 1-Wire bus
uint8_t DOneWire::wireSearch(uint8_t *address)
{
uint8_t direction;
int8_t last_zero = -1;
if (searchLastDeviceFlag)
return 0;
if (!wireReset())
return 0;
waitOnBusy();
wireWriteByte(WIRE_COMMAND_SEARCH);
for (uint8_t i = 0; i < 64; i++)
{
int searchByte = i / 8;
int searchBit = 1 << i % 8;
if (i < searchLastDiscrepancy)
direction = searchAddress[searchByte] & searchBit;
else
direction = i == searchLastDiscrepancy;
waitOnBusy();
begin();
writeByte(DS2482_COMMAND_TRIPLET);
writeByte(direction ? 0x80 : 0x00);
end();
uint8_t status = waitOnBusy();
uint8_t id = status & DS2482_STATUS_SBR;
uint8_t comp_id = status & DS2482_STATUS_TSB;
direction = status & DS2482_STATUS_DIR;
if (id && comp_id)
{
return 0;
}
else
{
if (!id && !comp_id && !direction)
{
last_zero = i;
}
}
if (direction)
searchAddress[searchByte] |= searchBit;
else
searchAddress[searchByte] &= ~searchBit;
}
searchLastDiscrepancy = last_zero;
if (last_zero == -1)
searchLastDeviceFlag = 1;
for (uint8_t i = 0; i < 8; i++)
address[i] = searchAddress[i];
return 1;
}
#if ONEWIRE_CRC8_TABLE
// This table comes from Dallas sample code where it is freely reusable,
// though Copyright (C) 2000 Dallas Semiconductor Corporation
static const uint8_t PROGMEM dscrc_table[] = {
0, 94, 188, 226, 97, 63, 221, 131, 194, 156, 126, 32, 163, 253, 31, 65,
157, 195, 33, 127, 252, 162, 64, 30, 95, 1, 227, 189, 62, 96, 130, 220,
35, 125, 159, 193, 66, 28, 254, 160, 225, 191, 93, 3, 128, 222, 60, 98,
190, 224, 2, 92, 223, 129, 99, 61, 124, 34, 192, 158, 29, 67, 161, 255,
70, 24, 250, 164, 39, 121, 155, 197, 132, 218, 56, 102, 229, 187, 89, 7,
219, 133, 103, 57, 186, 228, 6, 88, 25, 71, 165, 251, 120, 38, 196, 154,
101, 59, 217, 135, 4, 90, 184, 230, 167, 249, 27, 69, 198, 152, 122, 36,
248, 166, 68, 26, 153, 199, 37, 123, 58, 100, 134, 216, 91, 5, 231, 185,
140, 210, 48, 110, 237, 179, 81, 15, 78, 16, 242, 172, 47, 113, 147, 205,
17, 79, 173, 243, 112, 46, 204, 146, 211, 141, 111, 49, 178, 236, 14, 80,
175, 241, 19, 77, 206, 144, 114, 44, 109, 51, 209, 143, 12, 82, 176, 238,
50, 108, 142, 208, 83, 13, 239, 177, 240, 174, 76, 18, 145, 207, 45, 115,
202, 148, 118, 40, 171, 245, 23, 73, 8, 86, 180, 234, 105, 55, 213, 139,
87, 9, 235, 181, 54, 104, 138, 212, 149, 203, 41, 119, 244, 170, 72, 22,
233, 183, 85, 11, 136, 214, 52, 106, 43, 117, 151, 201, 74, 20, 246, 168,
116, 42, 200, 150, 21, 75, 169, 247, 182, 232, 10, 84, 215, 137, 107, 53};
//
// Compute a Dallas Semiconductor 8 bit CRC. These show up in the ROM
// and the registers. (note: this might better be done without to
// table, it would probably be smaller and certainly fast enough
// compared to all those delayMicrosecond() calls. But I got
// confused, so I use this table from the examples.)
//
uint8_t DOneWire::crc8(const uint8_t *addr, uint8_t len)
{
uint8_t crc = 0;
while (len--)
{
crc = pgm_read_byte(dscrc_table + (crc ^ *addr++));
}
return crc;
}
#else
//
// Compute a Dallas Semiconductor 8 bit CRC directly.
// this is much slower, but much smaller, than the lookup table.
//
uint8_t DOneWire::crc8(const uint8_t *addr, uint8_t len)
{
uint8_t crc = 0;
while (len--)
{
uint8_t inbyte = *addr++;
for (uint8_t i = 8; i; i--)
{
uint8_t mix = (crc ^ inbyte) & 0x01;
crc >>= 1;
if (mix)
crc ^= 0x8C;
inbyte >>= 1;
}
}
return crc;
}
#endif
// ****************************************
// These are here to mirror the functions in the original DOneWire
// ****************************************
// This is a lazy way of getting compatibility with DallasTemperature
// Not all functions are implemented, only those used in DallasTemeperature
void DOneWire::reset_search()
{
wireResetSearch();
}
uint8_t DOneWire::search(uint8_t *newAddr)
{
return wireSearch(newAddr);
}
// Perform a 1-Wire reset cycle. Returns 1 if a device responds
// with a presence pulse. Returns 0 if there is no device or the
// bus is shorted or otherwise held low for more than 250uS
uint8_t DOneWire::reset(void)
{
return wireReset();
}
// Issue a 1-Wire rom select command, you do the reset first.
void DOneWire::select(const uint8_t rom[8])
{
wireSelect(rom);
}
// Issue a 1-Wire rom skip command, to address all on bus.
void DOneWire::skip(void)
{
wireSkip();
}
// Write a byte.
// Ignore the power bit
void DOneWire::write(uint8_t v, uint8_t power)
{
wireWriteByte(v, power);
}
// Read a byte.
uint8_t DOneWire::read(void)
{
return wireReadByte();
}
// Read a bit.
uint8_t DOneWire::read_bit(void)
{
return wireReadBit();
}
// Write a bit.
void DOneWire::write_bit(uint8_t v)
{
wireWriteBit(v);
}
// ****************************************
// End mirrored functions
// ****************************************
bool DOneWire::selectChannel(uint8_t channel)
{
uint8_t ch, ch_read;
switch (channel)
{
case 0:
default:
ch = 0xf0;
ch_read = 0xb8;
break;
case 1:
ch = 0xe1;
ch_read = 0xb1;
break;
case 2:
ch = 0xd2;
ch_read = 0xaa;
break;
case 3:
ch = 0xc3;
ch_read = 0xa3;
break;
case 4:
ch = 0xb4;
ch_read = 0x9c;
break;
case 5:
ch = 0xa5;
ch_read = 0x95;
break;
case 6:
ch = 0x96;
ch_read = 0x8e;
break;
case 7:
ch = 0x87;
ch_read = 0x87;
break;
};
waitOnBusy();
begin();
Wire.write(0xc3);
Wire.write(ch);
end();
waitOnBusy();
uint8_t check = readByte();
return check == ch_read;
}