-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMeOneWire.cpp
734 lines (692 loc) · 19.5 KB
/
MeOneWire.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
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
/**
* \par Copyright (C), 2012-2016, MakeBlock
* \class MeOneWire
* \brief Driver for 1-wire protocol.
* @file MeOneWire.cpp
* @author MakeBlock
* @version V1.0.0
* @date 2015/09/04
* @brief Driver for 1-wire protocol.
*
* \par Copyright
* This software is Copyright (C), 2012-2016, MakeBlock. Use is subject to license \n
* conditions. The main licensing options available are GPL V2 or Commercial: \n
*
* \par Open Source Licensing GPL V2
* This is the appropriate option if you want to share the source code of your \n
* application with everyone you distribute it to, and you also want to give them \n
* the right to share who uses it. If you wish to use this software under Open \n
* Source Licensing, you must contribute all your source code to the open source \n
* community in accordance with the GPL Version 2 when your application is \n
* distributed. See http://www.gnu.org/copyleft/gpl.html
*
* \par Description
* This file is a drive for 1-wire protocol, 1-Wire communication protocol
* was developed by Dallas Semiconductor owned by Maxim. This protocol allows
* communication of multiple chips to one host with minimal pin count.
* The protocol is called 1-Wire because it uses 1 wire to transfer data.
* 1-Wire architecture uses pull up resistor to pull voltage of data line at
* master side.
*
* \par Method List:
*
* 1. bool MeOneWire::readIO(void)
* 2. void MeOneWire::reset(uint8_t pin)
* 3. uint8_t MeOneWire::reset(void)
* 4. void MeOneWire::select(const uint8_t rom[8])
* 5. void MeOneWire::skip(void)()
* 6. void MeOneWire::write(uint8_t v, uint8_t power)
* 7. void MeOneWire::write_bytes(const uint8_t *buf, uint16_t count, bool power)
* 8. uint8_t MeOneWire::read(void)
* 9. void MeOneWire::read_bytes(uint8_t *buf, uint16_t count)
* 10. void MeOneWire::write_bit(uint8_t v)
* 11. uint8_t MeOneWire::read_bit(void)
* 12. void MeOneWire::depower(void)
* 13. void MeOneWire::reset_search(void)
* 14. void MeOneWire::target_search(uint8_t family_code)
* 15. uint8_t MeOneWire::search(uint8_t *newAddr)
*
* \par History:
* <pre>
* `<Author>` `<Time>` `<Version>` `<Descr>`
* Mark Yan 2015/09/04 1.0.0 Rebuild the old lib.
* </pre>
*
* DERIVED FROM
* Copyright (c) 2007, Jim Studt (original old version - many contributors since)
* The latest version of this library may be found at:
* http://www.pjrc.com/teensy/td_libs_OneWire.html
* Version 2.1:
* Arduino 1.0 compatibility, Paul Stoffregen
* Improve temperature example, Paul Stoffregen
* DS250x_PROM example, Guillermo Lovato
* PIC32 (chipKit) compatibility, Jason Dangel, dangel.jason AT gmail.com
* Improvements from Glenn Trewitt:
* - crc16() now works
* - check_crc16() does all of calculation/checking work.
* - Added read_bytes() and write_bytes(), to reduce tedious loops.
* - Added ds2408 example.
* Delete very old, out-of-date readme file (info is here)
* Version 2.0: Modifications by Paul Stoffregen, January 2010:
* http://www.pjrc.com/teensy/td_libs_OneWire.html
* Search fix from Robin James
* http://www.arduino.cc/cgi-bin/yabb2/YaBB.pl?num=1238032295/27#27
* Use direct optimized I/O in all cases
* Disable interrupts during timing critical sections
* (this solves many random communication errors)
* Disable interrupts during read-modify-write I/O
* Reduce RAM consumption by eliminating unnecessary
* variables and trimming many to 8 bits
* Optimize both crc8 - table version moved to flash
* Modified to work with larger numbers of devices - avoids loop.
* Tested in Arduino 11 alpha with 12 sensors.
* 26 Sept 2008 -- Robin James
* http://www.arduino.cc/cgi-bin/yabb2/YaBB.pl?num=1238032295/27#27
* Updated to work with arduino-0008 and to include skip() as of
* 2007/07/06. --RJL20
* Modified to calculate the 8-bit CRC directly, avoiding the need for
* the 256-byte lookup table to be loaded in RAM. Tested in arduino-0010
* -- Tom Pollard, Jan 23, 2008
* Jim Studt's original library was modified by Josh Larios.
* Tom Pollard, [email protected], contributed around May 20, 2008
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, sublicense, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so, subject to
* the following conditions:
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
* LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
* OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
* Much of the code was inspired by Derek Yerger's code, though I don't
* think much of that remains. In any event that was..
* (copyleft) 2006 by Derek Yerger - Free to distribute freely.
* The CRC code was excerpted and inspired by the Dallas Semiconductor
* sample code bearing this copyright.
* //---------------------------------------------------------------------------
* // Copyright (C) 2000 Dallas Semiconductor Corporation, All Rights Reserved.
* //
* // Permission is hereby granted, free of charge, to any person obtaining a
* // copy of this software and associated documentation files (the "Software"),
* // to deal in the Software without restriction, including without limitation
* // the rights to use, copy, modify, merge, publish, distribute, sublicense,
* // and/or sell copies of the Software, and to permit persons to whom the
* // Software is furnished to do so, subject to the following conditions:
* //
* // The above copyright notice and this permission notice shall be included
* // in all copies or substantial portions of the Software.
* //
* // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
* // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
* // IN NO EVENT SHALL DALLAS SEMICONDUCTOR BE LIABLE FOR ANY CLAIM, DAMAGES
* // OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
* // ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
* // OTHER DEALINGS IN THE SOFTWARE.
* //
* // Except as contained in this notice, the name of Dallas Semiconductor
* // shall not be used except as stated in the Dallas Semiconductor
* // Branding Policy.
* //--------------------------------------------------------------------------
*/
#include "MeOneWire.h"
/**
* Alternate Constructor which can call your own function to map the MeOneWire to arduino port,
* no pins are used or initialized here.
* \param[in]
* None
*/
MeOneWire::MeOneWire(void)
{
}
/**
* Alternate Constructor which can call your own function to map the MeOneWire to arduino port,
* it will assigned the shot PIN and focus pin.
* \param[in]
* pin - arduino port for 1-wire(should digital pin)
*/
MeOneWire::MeOneWire(uint8_t pin)
{
bitmask = MePIN_TO_BITMASK(pin);
baseReg = MePIN_TO_BASEREG(pin);
// reset_search();
}
/**
* \par Function
* reset
* \par Description
* Reset the available PIN for 1-wire
* \param[in]
* pin - arduino port(should digital pin)
* \par Output
* None
* \return
* None
* \par Others
* None
*/
void MeOneWire::reset(uint8_t pin)
{
bitmask = MePIN_TO_BITMASK(pin);
baseReg = MePIN_TO_BASEREG(pin);
}
/**
* \par Function
* readIO
* \par Description
* Read a bit from 1-wire data port
* \par Output
* None
* \return
* return the bit value we read
* \par Others
* None
*/
bool MeOneWire::readIO(void)
{
MeIO_REG_TYPE mask = bitmask;
volatile MeIO_REG_TYPE *reg MeIO_REG_ASM = baseReg;
uint8_t r;
MeDIRECT_MODE_INPUT(reg, mask); // allow it to float
delayMicroseconds(10);
r = MeDIRECT_READ(reg, mask);
return(r);
}
/**
* \par Function
* reset
* \par Description
* Perform the MeOneWire reset function. We will wait up to 250uS for
* the bus to come high, if it doesn't then it is broken or shorted.
* \param[in]
* v - The bit value need be written
* \par Output
* None
* \return
* Returns 1 if a device asserted a presence pulse, 0 otherwise.
* \par Others
* None
*/
uint8_t MeOneWire::reset(void)
{
MeIO_REG_TYPE mask = bitmask;
volatile MeIO_REG_TYPE *reg MeIO_REG_ASM = baseReg;
uint8_t r;
uint8_t retries = 125;
noInterrupts();
MeDIRECT_MODE_INPUT(reg, mask);
interrupts();
/* wait until the wire is high... just in case */
do
{
if (--retries == 0)
{
return(0);
}
delayMicroseconds(2);
}
while (!MeDIRECT_READ(reg, mask));
noInterrupts();
MeDIRECT_WRITE_LOW(reg, mask);
MeDIRECT_MODE_OUTPUT(reg, mask); /* drive output low */
interrupts();
delayMicroseconds(480);
noInterrupts();
MeDIRECT_MODE_INPUT(reg, mask); /* allow it to float */
delayMicroseconds(70);
r = !MeDIRECT_READ(reg, mask);
interrupts();
delayMicroseconds(410);
return(r);
}
/**
* \par Function
* write_bit
* \par Description
* Write a bit. The bus is always left powered at the end, see
* note in write() about that.
* \param[in]
* v - The bit value need be written
* \par Output
* None
* \return
* None
* \par Others
* None
*/
void MeOneWire::write_bit(uint8_t v)
{
MeIO_REG_TYPE mask = bitmask;
volatile MeIO_REG_TYPE *reg MeIO_REG_ASM = baseReg;
if (v & 1)
{
noInterrupts();
MeDIRECT_WRITE_LOW(reg, mask);
MeDIRECT_MODE_OUTPUT(reg, mask); /* drive output low */
delayMicroseconds(10);
MeDIRECT_WRITE_HIGH(reg, mask); /* drive output high */
interrupts();
delayMicroseconds(55);
}
else
{
noInterrupts();
MeDIRECT_WRITE_LOW(reg, mask);
MeDIRECT_MODE_OUTPUT(reg, mask); /* drive output low */
delayMicroseconds(65);
MeDIRECT_WRITE_HIGH(reg, mask); /* drive output high */
interrupts();
delayMicroseconds(5);
}
}
/**
* \par Function
* read_bit
* \par Description
* Read a bit. Port and bit is used to cut lookup time and provide
* more certain timing
* \par Output
* None
* \return
* return the bit value we read
* \par Others
* None
*/
uint8_t MeOneWire::read_bit(void)
{
MeIO_REG_TYPE mask = bitmask;
volatile MeIO_REG_TYPE *reg MeIO_REG_ASM = baseReg;
uint8_t r;
noInterrupts();
MeDIRECT_MODE_OUTPUT(reg, mask);
MeDIRECT_WRITE_LOW(reg, mask);
delayMicroseconds(3);
MeDIRECT_MODE_INPUT(reg, mask); /* let pin float, pull up will raise */
delayMicroseconds(10);
r = MeDIRECT_READ(reg, mask);
interrupts();
delayMicroseconds(53);
return(r);
}
/**
* \par Function
* write
* \par Description
* Write a byte of data
* \param[in]
* v - The value need be written
* \param[in]
* power - Should we need active drivers to raise the pin high
* \par Output
* None
* \return
* None
* \par Others
* None
*/
void MeOneWire::write(uint8_t v, uint8_t power)
{
uint8_t bitMask;
for (bitMask = 0x01; bitMask; bitMask <<= 1)
{
MeOneWire::write_bit((bitMask & v) ? 1 : 0);
}
if (!power)
{
noInterrupts();
MeDIRECT_MODE_INPUT(baseReg, bitmask);
MeDIRECT_WRITE_LOW(baseReg, bitmask);
interrupts();
}
}
/**
* \par Function
* write_bytes
* \par Description
* Write certain number of data
* \param[in]
* buf - The buffer used to store the data that need be written
* \param[in]
* count - The count of the bytes we need to write
* \param[in]
* power - Should we need active drivers to raise the pin high
* \par Output
* None
* \return
* None
* \par Others
* None
*/
void MeOneWire::write_bytes(const uint8_t *buf, uint16_t count, bool power)
{
for (uint16_t i = 0; i < count; i++)
{
write(buf[i]);
}
if (!power)
{
noInterrupts();
MeDIRECT_MODE_INPUT(baseReg, bitmask);
MeDIRECT_WRITE_LOW(baseReg, bitmask);
interrupts();
}
}
/**
* \par Function
* read
* \par Description
* Read a byte of data
* \par Output
* None
* \return
* The read data(8-bit data)
* \par Others
* None
*/
uint8_t MeOneWire::read()
{
uint8_t bitMask;
uint8_t r = 0;
for (bitMask = 0x01; bitMask; bitMask <<= 1)
{
if (MeOneWire::read_bit())
{
r |= bitMask;
}
}
return(r);
}
/**
* \par Function
* read_bytes
* \par Description
* Read certain number of data
* \param[out]
* buf - The buffer used to store the read data
* \param[in]
* count - The count of the bytes we need to read
* \par Output
* None
* \return
* None
* \par Others
* None
*/
void MeOneWire::read_bytes(uint8_t *buf, uint16_t count)
{
for (uint16_t i = 0; i < count; i++)
{
buf[i] = read();
}
}
/**
* \par Function
* select
* \par Description
* Issue a 1-Wire rom select command.
* \param[in]
* rom[8] - 64bit ROM code.
* \par Output
* None
* \return
* None
* \par Others
* None
*/
void MeOneWire::select(const uint8_t rom[8])
{
uint8_t i;
write(0x55); /* Choose ROM */
for (i = 0; i < 8; i++)
{
write(rom[i]);
}
}
/**
* \par Function
* skip
* \par Description
* Issue a 1-Wire rom skip command.
* \par Output
* None
* \return
* None
* \par Others
* None
*/
void MeOneWire::skip(void)
{
write(0xCC); /* Skip ROM */
}
/**
* \par Function
* depower
* \par Description
* Stop forcing power onto the bus. You only need to do this if
* you used the 'power' flag to write() or used a write_bit() call
* and aren't about to do another read or write. You would rather
* not leave this powered if you don't have to, just in case
* someone shorts your bus.
* \par Output
* None
* \return
* None
* \par Others
* None
*/
void MeOneWire::depower(void)
{
noInterrupts();
MeDIRECT_MODE_INPUT(baseReg, bitmask);
interrupts();
}
/**
* \par Function
* reset_search
* \par Description
* If we need search a new device, we need call this function to clear
* the search state and all stored values
* \par Output
* Reset all stored values
* \return
* None
* \par Others
* None
*/
void MeOneWire::reset_search(void)
{
/* reset the search state */
LastDiscrepancy = 0;
LastDeviceFlag = false;
LastFamilyDiscrepancy = 0;
for (int16_t i = 7;; i--)
{
ROM_NO[i] = 0;
if (i == 0)
{
break;
}
}
}
/**
* \par Function
* target_search
* \par Description
* Setup the search to find the device type 'family_code' on the next call
* of search(*newAddr) if it is present.
* \param[in]
* family_code - the device type we need search
* \par Output
* None
* \return
* None
* \par Others
* None
*/
void MeOneWire::target_search(uint8_t family_code)
{
/* set the search state to find SearchFamily type devices */
ROM_NO[0] = family_code;
for (uint8_t i = 1; i < 8; i++)
{
ROM_NO[i] = 0;
}
LastDiscrepancy = 64;
LastFamilyDiscrepancy = 0;
LastDeviceFlag = false;
}
/**
* \par Function
* search
* \par Description
* Perform a search. If this function returns a '1' then it has
* enumerated the next device and you may retrieve the ROM from the
* MeOneWire::address variable. If there are no devices, no further
* devices, or something horrible happens in the middle of the
* enumeration then a '0' is returned. If a new device is found then
* its address is copied to newAddr. Use MeOneWire::reset_search() to
* start over. you can get the algorithm from
* doc\Me_Temperature\Datasheet\1-Wire_Search_Algorithm.pdf
* \param[out]
* newAddr - The adrress to store the ROM data
* \par Output
* None
* \return
* true - device found, ROM number in ROM_NO buffer\r\n
* false - device not found, end of search
* \par Others
* None
*/
uint8_t MeOneWire::search(uint8_t *newAddr)
{
uint8_t id_bit_number;
uint8_t last_zero, rom_byte_number, search_result;
uint8_t id_bit, cmp_id_bit;
uint8_t rom_byte_mask, search_direction;
/* initialize for search */
id_bit_number = 1;
last_zero = 0;
rom_byte_number = 0;
rom_byte_mask = 1;
search_result = 0;
/* if the last call was not the last one */
if (!LastDeviceFlag)
{
/* 1-Wire reset */
if (!reset())
{
/* reset the search */
LastDiscrepancy = 0;
LastDeviceFlag = false;
LastFamilyDiscrepancy = 0;
return(false);
}
/* issue the search command */
write(0xF0);
/* loop to do the search */
do
{
/* read a bit and its complement */
id_bit = read_bit();
cmp_id_bit = read_bit();
/* check for no devices on 1-wire */
if ((id_bit == 1) && (cmp_id_bit == 1))
{
break;
}
else
{
/* all devices coupled have 0 or 1 */
if (id_bit != cmp_id_bit)
{
search_direction = id_bit; /* bit write value for search */
}
else
{
/*
if this discrepancy if before the Last Discrepancy
on a previous next then pick the same as last time
*/
if (id_bit_number < LastDiscrepancy)
{
search_direction = ((ROM_NO[rom_byte_number] & rom_byte_mask) > 0);
}
else
{
/* if equal to last pick 1, if not then pick 0 */
search_direction = (id_bit_number == LastDiscrepancy);
}
/* if 0 was picked then record its position in LastZero */
if (search_direction == 0)
{
last_zero = id_bit_number;
/* check for Last discrepancy in family */
if (last_zero < 9)
{
LastFamilyDiscrepancy = last_zero;
}
}
}
/*
set or clear the bit in the ROM byte rom_byte_number
with mask rom_byte_mask
*/
if (search_direction == 1)
{
ROM_NO[rom_byte_number] |= rom_byte_mask;
}
else
{
ROM_NO[rom_byte_number] &= ~rom_byte_mask;
}
/* serial number search direction write bit */
write_bit(search_direction);
/*
increment the byte counter id_bit_number
and shift the mask rom_byte_mask
*/
id_bit_number++;
rom_byte_mask <<= 1;
/* if the mask is 0 then go to new SerialNum byte rom_byte_number and reset mask */
if (rom_byte_mask == 0)
{
rom_byte_number++;
rom_byte_mask = 1;
}
}
}
while (rom_byte_number < 8); /* loop until through all ROM bytes 0-7 */
/* if the search was successful then */
if (!(id_bit_number < 65))
{
/* search successful so set LastDiscrepancy,LastDeviceFlag,search_result */
LastDiscrepancy = last_zero;
/* check for last device */
if (LastDiscrepancy == 0)
{
LastDeviceFlag = true;
}
search_result = true;
}
}
/* if no device found then reset counters so next 'search' will be like a first */
if (!search_result || !ROM_NO[0])
{
LastDiscrepancy = 0;
LastDeviceFlag = false;
LastFamilyDiscrepancy = 0;
search_result = false;
}
for (int16_t i = 0; i < 8; i++)
{
newAddr[i] = ROM_NO[i];
}
return(search_result);
}