Implementation of 1-Wire with added Alarm Search Functionality

Dependents:   Max32630_One_Wire_Interface

Revision:
20:ba60c076e92b
Parent:
19:6d4c039a2d8e
Child:
22:686273e55cdc
diff -r 6d4c039a2d8e -r ba60c076e92b OneWire_Switches/DS2413/ds2413.cpp
--- a/OneWire_Switches/DS2413/ds2413.cpp	Sun Mar 20 18:12:18 2016 -0700
+++ b/OneWire_Switches/DS2413/ds2413.cpp	Mon Mar 21 01:28:34 2016 +0000
@@ -175,8 +175,6 @@
       
       if(ow_result == OneWireInterface::Success)
       {
-        printf("\nexpected_status = 0x%2x\n", expected_status);
-        printf("\nrcv_block[1] = 0x%2x\n", rcv_block[1]);
         if((rcv_block[0] == 0xAA) && (rcv_block[1] == expected_status))
         {
           result = Ds2413::Success;