Implementation of 1-Wire with added Alarm Search Functionality

Dependents:   Max32630_One_Wire_Interface

Revision:
43:23017dcd2ec3
Parent:
32:bce180b544ed
Child:
47:307dc45952db
--- a/OneWire_Masters/OneWireMaster.h	Wed Apr 06 04:30:37 2016 +0000
+++ b/OneWire_Masters/OneWireMaster.h	Wed Apr 06 08:49:27 2016 -0500
@@ -454,22 +454,6 @@
     * @return CmdResult - zero on success, non-zero on failure
     **************************************************************/
     CmdResult OWSearch(SearchState & searchState);
-    
-    
-private:
-
-    enum OW_ROM_CMD
-    {
-        READ_ROM = 0x33,
-        MATCH_ROM = 0x55,
-        SEARCH_ROM = 0xF0,
-        SKIP_ROM = 0xCC,
-        RESUME = 0xA5,
-        OVERDRIVE_SKIP_ROM = 0x3C,
-        OVERDRIVE_MATCH_ROM = 0x69
-    };
-    
-    static const std::uint16_t _oddparity[16];
 };