Fix cut filament unit tests
still, this may need some more work in relation to PR #128pull/132/head
parent
3d2a76b6a0
commit
63509af294
|
|
@ -33,8 +33,8 @@ void CutFilament::SelectFilamentSlot() {
|
||||||
state = ProgressCode::SelectingFilamentSlot;
|
state = ProgressCode::SelectingFilamentSlot;
|
||||||
mi::idler.Engage(cutSlot);
|
mi::idler.Engage(cutSlot);
|
||||||
ms::selector.MoveToSlot(cutSlot);
|
ms::selector.MoveToSlot(cutSlot);
|
||||||
ml::leds.SetMode(mg::globals.ActiveSlot(), ml::green, ml::blink0);
|
ml::leds.SetMode(cutSlot, ml::green, ml::blink0);
|
||||||
ml::leds.SetMode(mg::globals.ActiveSlot(), ml::red, ml::off);
|
ml::leds.SetMode(cutSlot, ml::red, ml::off);
|
||||||
}
|
}
|
||||||
|
|
||||||
bool CutFilament::StepInner() {
|
bool CutFilament::StepInner() {
|
||||||
|
|
@ -49,6 +49,7 @@ bool CutFilament::StepInner() {
|
||||||
break;
|
break;
|
||||||
case ProgressCode::SelectingFilamentSlot:
|
case ProgressCode::SelectingFilamentSlot:
|
||||||
if (mi::idler.Engaged() && ms::selector.Slot() == cutSlot) { // idler and selector finished their moves
|
if (mi::idler.Engaged() && ms::selector.Slot() == cutSlot) { // idler and selector finished their moves
|
||||||
|
mg::globals.SetActiveSlot(cutSlot);
|
||||||
feed.Reset(true);
|
feed.Reset(true);
|
||||||
state = ProgressCode::FeedingToFinda;
|
state = ProgressCode::FeedingToFinda;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -39,7 +39,7 @@ void CutSlot(logic::CutFilament &cf, uint8_t cutSlot) {
|
||||||
REQUIRE(WhileTopState(cf, ProgressCode::SelectingFilamentSlot, selectorMoveMaxSteps));
|
REQUIRE(WhileTopState(cf, ProgressCode::SelectingFilamentSlot, selectorMoveMaxSteps));
|
||||||
|
|
||||||
// idler and selector reached their target positions and the CF automaton will start feeding to FINDA as the next step
|
// idler and selector reached their target positions and the CF automaton will start feeding to FINDA as the next step
|
||||||
REQUIRE(VerifyState(cf, mg::FilamentLoadState::AtPulley, cutSlot, cutSlot, false, false, ml::blink0, ml::off, ErrorCode::RUNNING, ProgressCode::FeedingToFinda));
|
REQUIRE(VerifyState2(cf, mg::FilamentLoadState::AtPulley, cutSlot, cutSlot, false, false, cutSlot, ml::blink0, ml::off, ErrorCode::RUNNING, ProgressCode::FeedingToFinda));
|
||||||
|
|
||||||
// prepare for simulated finda trigger
|
// prepare for simulated finda trigger
|
||||||
REQUIRE(WhileCondition(
|
REQUIRE(WhileCondition(
|
||||||
|
|
@ -51,7 +51,7 @@ void CutSlot(logic::CutFilament &cf, uint8_t cutSlot) {
|
||||||
return cf.TopLevelState() == ProgressCode::FeedingToFinda; }, 5000));
|
return cf.TopLevelState() == ProgressCode::FeedingToFinda; }, 5000));
|
||||||
|
|
||||||
// filament fed to FINDA
|
// filament fed to FINDA
|
||||||
REQUIRE(VerifyState(cf, mg::FilamentLoadState::InSelector, cutSlot, cutSlot, true, true, ml::blink0, ml::off, ErrorCode::RUNNING, ProgressCode::UnloadingToPulley));
|
REQUIRE(VerifyState2(cf, mg::FilamentLoadState::InSelector, cutSlot, cutSlot, true, true, cutSlot, ml::blink0, ml::off, ErrorCode::RUNNING, ProgressCode::UnloadingToPulley));
|
||||||
|
|
||||||
// pull it back to the pulley + simulate FINDA depress
|
// pull it back to the pulley + simulate FINDA depress
|
||||||
REQUIRE(WhileCondition(
|
REQUIRE(WhileCondition(
|
||||||
|
|
@ -62,7 +62,7 @@ void CutSlot(logic::CutFilament &cf, uint8_t cutSlot) {
|
||||||
}
|
}
|
||||||
return cf.TopLevelState() == ProgressCode::UnloadingToPulley; }, 5000));
|
return cf.TopLevelState() == ProgressCode::UnloadingToPulley; }, 5000));
|
||||||
|
|
||||||
REQUIRE(VerifyState(cf, mg::FilamentLoadState::AtPulley, cutSlot, cutSlot, false, true, ml::blink0, ml::off, ErrorCode::RUNNING, ProgressCode::PreparingBlade));
|
REQUIRE(VerifyState2(cf, mg::FilamentLoadState::AtPulley, cutSlot, cutSlot, false, true, cutSlot, ml::blink0, ml::off, ErrorCode::RUNNING, ProgressCode::PreparingBlade));
|
||||||
|
|
||||||
// now move the selector aside, prepare for cutting
|
// now move the selector aside, prepare for cutting
|
||||||
REQUIRE(WhileTopState(cf, ProgressCode::PreparingBlade, 5000));
|
REQUIRE(WhileTopState(cf, ProgressCode::PreparingBlade, 5000));
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue