Fix crash in manage_response

The watchdog needs to be kicked in the for(;;) loop.
This is usually done by calling manage_heater before
manage_inactivity.
This commit is contained in:
Guðni Már Gilbert 2022-04-23 18:11:26 +00:00 committed by D.R.racer
parent c0a6d1343a
commit d6044387d9
1 changed files with 1 additions and 1 deletions

View File

@ -511,7 +511,7 @@ void MMU2::manage_response(const bool move_axes, const bool turn_off_nozzle) {
// - still running -> wait normally in idle()
// - failed -> then do the safety moves on the printer like before
// - finished ok -> proceed with reading other commands
manage_heater();
// @@TODO this needs verification - we need something which matches Marlin2's idle()
manage_inactivity(true); // calls LogicStep() and remembers its return status