Skip to content

Commit

Permalink
Merge pull request #4682 from 3d-gussner/MK3_3.14.0_add-workaround-fo…
Browse files Browse the repository at this point in the history
…r-tune-button

Mk3 3.14.0 add workaround for tune button
  • Loading branch information
3d-gussner committed May 6, 2024
2 parents 65fde95 + 63e6d63 commit 9da23d8
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 9da23d8

Please sign in to comment.