MMU: revert WaitForHotendTargetTempBeep(); position in code
The 8-bit FW uses a different Fullscreen UI which doesn't show the current temperature. So, for now, keep calling WaitForHotendTargetTempBeep before showing the full-screen message.
This commit is contained in:
parent
09f1d85e9c
commit
d548bb68fd
|
|
@ -493,9 +493,10 @@ bool MMU2::unload() {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
WaitForHotendTargetTempBeep();
|
||||||
|
|
||||||
{
|
{
|
||||||
ReportingRAII rep(CommandInProgress::UnloadFilament);
|
ReportingRAII rep(CommandInProgress::UnloadFilament);
|
||||||
WaitForHotendTargetTempBeep();
|
|
||||||
UnloadInner();
|
UnloadInner();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -573,14 +574,14 @@ bool MMU2::load_filament_to_nozzle(uint8_t slot) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
WaitForHotendTargetTempBeep();
|
||||||
|
|
||||||
FullScreenMsgLoad(slot);
|
FullScreenMsgLoad(slot);
|
||||||
{
|
{
|
||||||
// used for MMU-menu operation "Load to Nozzle"
|
// used for MMU-menu operation "Load to Nozzle"
|
||||||
ReportingRAII rep(CommandInProgress::ToolChange);
|
ReportingRAII rep(CommandInProgress::ToolChange);
|
||||||
FSensorBlockRunout blockRunout;
|
FSensorBlockRunout blockRunout;
|
||||||
|
|
||||||
WaitForHotendTargetTempBeep();
|
|
||||||
|
|
||||||
if (extruder != MMU2_NO_TOOL) { // we already have some filament loaded - free it + shape its tip properly
|
if (extruder != MMU2_NO_TOOL) { // we already have some filament loaded - free it + shape its tip properly
|
||||||
filament_ramming();
|
filament_ramming();
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue