@@ -50,9 +50,9 @@ int MATCH (int measured, int desired)
5050
5151 bool passed = ((measured >= TICKS_LOW (desired)) && (measured <= TICKS_HIGH (desired)));
5252 if (passed)
53- DBG_PRINTLN (F (" ; passed" ));
53+ DBG_PRINTLN (F (" ? ; passed" ));
5454 else
55- DBG_PRINTLN (F (" ; FAILED" ));
55+ DBG_PRINTLN (F (" ? ; FAILED" ));
5656 return passed;
5757}
5858
@@ -65,7 +65,7 @@ int MATCH_MARK (int measured_ticks, int desired_us)
6565 DBG_PRINT (measured_ticks * USECPERTICK, DEC);
6666 DBG_PRINT (F (" us vs " ));
6767 DBG_PRINT (desired_us, DEC);
68- DBG_PRINT (" us" );
68+ DBG_PRINT (" us" );
6969 DBG_PRINT (" : " );
7070 DBG_PRINT (TICKS_LOW (desired_us + MARK_EXCESS) * USECPERTICK, DEC);
7171 DBG_PRINT (F (" <= " ));
@@ -76,9 +76,9 @@ int MATCH_MARK (int measured_ticks, int desired_us)
7676 bool passed = ((measured_ticks >= TICKS_LOW (desired_us + MARK_EXCESS))
7777 && (measured_ticks <= TICKS_HIGH (desired_us + MARK_EXCESS)));
7878 if (passed)
79- DBG_PRINTLN (F (" ; passed" ));
79+ DBG_PRINTLN (F (" ? ; passed" ));
8080 else
81- DBG_PRINTLN (F (" ; FAILED" ));
81+ DBG_PRINTLN (F (" ? ; FAILED" ));
8282 return passed;
8383}
8484
@@ -91,7 +91,7 @@ int MATCH_SPACE (int measured_ticks, int desired_us)
9191 DBG_PRINT (measured_ticks * USECPERTICK, DEC);
9292 DBG_PRINT (F (" us vs " ));
9393 DBG_PRINT (desired_us, DEC);
94- DBG_PRINT (" us" );
94+ DBG_PRINT (" us" );
9595 DBG_PRINT (" : " );
9696 DBG_PRINT (TICKS_LOW (desired_us - MARK_EXCESS) * USECPERTICK, DEC);
9797 DBG_PRINT (F (" <= " ));
@@ -102,9 +102,9 @@ int MATCH_SPACE (int measured_ticks, int desired_us)
102102 bool passed = ((measured_ticks >= TICKS_LOW (desired_us - MARK_EXCESS))
103103 && (measured_ticks <= TICKS_HIGH (desired_us - MARK_EXCESS)));
104104 if (passed)
105- DBG_PRINTLN (F (" ; passed" ));
105+ DBG_PRINTLN (F (" ? ; passed" ));
106106 else
107- DBG_PRINTLN (F (" ; FAILED" ));
107+ DBG_PRINTLN (F (" ? ; FAILED" ));
108108 return passed;
109109}
110110
0 commit comments