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