Skip to content

Commit 9da23d8

Browse files
authored
Merge pull request #4682 from 3d-gussner/MK3_3.14.0_add-workaround-for-tune-button
Mk3 3.14.0 add workaround for tune button
2 parents 65fde95 + 63e6d63 commit 9da23d8

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

Firmware/mmu2_reporting.cpp

+9
Original file line numberDiff line numberDiff line change
@@ -464,6 +464,15 @@ void tuneIdlerStallguardThresholdMenu() {
464464
}
465465

466466
void tuneIdlerStallguardThreshold() {
467+
if ((CommandInProgress)mmu2.GetCommandInProgress() != NoCommand)
468+
{
469+
// Workaround to mitigate an issue where the Tune menu doesn't
470+
// work if the MMU is running a command. For example the Idler
471+
// homing fails during toolchange.
472+
// To save the print, make the Tune button unresponsive for now.
473+
return;
474+
}
475+
467476
putErrorScreenToSleep = true;
468477
menu_submenu(tuneIdlerStallguardThresholdMenu);
469478
}

0 commit comments

Comments
 (0)