Handle the new MMU states (slow load to fsensor)

This commit is contained in:
D.R.racer 2022-05-24 17:24:22 +02:00
parent 5f9ca6a6f3
commit 456ddbb538
2 changed files with 5 additions and 1 deletions

View File

@ -652,6 +652,7 @@ void MMU2::OnMMUProgressMsg(ProgressCode pc){
// Act accordingly - every status change (even the same state)
switch(pc){
case ProgressCode::FeedingToBondtech:
case ProgressCode::FeedingToFSensor:
if ( loadFilamentStarted )
{
switch ( WhereIsFilament() )

View File

@ -36,7 +36,10 @@ enum class ProgressCode : uint_fast8_t {
EjectingFilament, // P24
RetractingFromFinda, // P25
Homing,
Homing, // P26
MovingSelector, // P27
FeedingToFSensor, // P28
Empty = 0xff // dummy empty state
};