fix some debug output

pull/126/head
3d-gussner 2021-09-30 09:47:52 +02:00 committed by DRracer
parent f9561e6cf7
commit 82f2e8ec54
2 changed files with 7 additions and 1 deletions

View File

@ -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;
}

View File

@ -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;
}