Skip to content

Commit

Permalink
Merge pull request #4681 from gudnimg/add-workaround-for-tune-button
Browse files Browse the repository at this point in the history
MMU: Add workaround for broken Tune button
  • Loading branch information
3d-gussner committed May 6, 2024
2 parents abdee5b + 6f915ee commit eaeb722
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions Firmware/mmu2_reporting.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -464,6 +464,15 @@ void tuneIdlerStallguardThresholdMenu() {
}

void tuneIdlerStallguardThreshold() {
if ((CommandInProgress)mmu2.GetCommandInProgress() != NoCommand)
{
// Workaround to mitigate an issue where the Tune menu doesn't
// work if the MMU is running a command. For example the Idler
// homing fails during toolchange.
// To save the print, make the Tune button unresponsive for now.
return;
}

putErrorScreenToSleep = true;
menu_submenu(tuneIdlerStallguardThresholdMenu);
}
Expand Down

0 comments on commit eaeb722

Please sign in to comment.