Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of DS1820 by
Diff: DS1820.cpp
- Revision:
- 12:196e9e54b033
- Parent:
- 11:1a3c3002b50c
- Child:
- 14:01fb493e5d2f
diff -r 1a3c3002b50c -r 196e9e54b033 DS1820.cpp
--- a/DS1820.cpp Mon Feb 16 16:53:11 2015 +0000
+++ b/DS1820.cpp Thu Feb 26 22:20:24 2015 +0000
@@ -117,9 +117,10 @@
} else {
ROM_bit_index=1;
descrepancy_marker=0;
+ char command_shift = command;
for (int n=0; n<8; n++) { // Search ROM command or Search Alarm command
- onewire_bit_out(pin, command & 0x01);
- command = command >> 1; // now the next bit is in the least sig bit position.
+ onewire_bit_out(pin, command_shift & 0x01);
+ command_shift = command_shift >> 1; // now the next bit is in the least sig bit position.
}
byte_counter = 0;
bit_mask = 0x01;
