Implementation of 1-Wire with added Alarm Search Functionality

Dependents:   Max32630_One_Wire_Interface

Revision:
139:f0e0a7976846
Parent:
104:3f48daed532b
--- a/Utilities/crc.h	Fri Dec 02 19:21:55 2016 +0000
+++ b/Utilities/crc.h	Tue Dec 13 13:31:30 2016 -0800
@@ -65,7 +65,7 @@
         /// @param data_len Length of the data array to process.
         /// @param crc Beginning state of the CRC generator.
         /// @returns The calculated CRC16.
-        uint16_t calculateCrc16(const uint8_t * data, size_t dataOffset, size_t dataLen, uint16_t crc = 0);
+        uint16_t calculateCrc16(const uint8_t * data, size_t dataLen, uint16_t crc = 0);
     }
 }