fix some debug output
parent
f9561e6cf7
commit
82f2e8ec54
|
|
@ -52,9 +52,11 @@ bool FeedToBondtech::Step() {
|
|||
}
|
||||
return false;
|
||||
case OK:
|
||||
dbg_logic_P(PSTR("Feed to Bondtech"));
|
||||
dbg_logic_P(PSTR("Feed to Bondtech OK"));
|
||||
return true;
|
||||
case Failed:
|
||||
dbg_logic_P(PSTR("Feed to Bondtech FAILED"));
|
||||
return true;
|
||||
default:
|
||||
return true;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -44,7 +44,11 @@ bool RetractFromFinda::Step() {
|
|||
}
|
||||
return false;
|
||||
case OK:
|
||||
dbg_logic_P(PSTR("Retract from FINDA OK"));
|
||||
return true;
|
||||
case Failed:
|
||||
dbg_logic_P(PSTR("Retract from FINDA OK"));
|
||||
return true;
|
||||
default:
|
||||
return true;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue