Skip to content

Commit

Permalink
Keep HAL tasks running during PID Autotune (#19671)
Browse files Browse the repository at this point in the history
  • Loading branch information
rhapsodyv authored and thinkyhead committed Oct 10, 2020
1 parent e817773 commit a7f3343
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Marlin/src/module/temperature.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -629,6 +629,11 @@ volatile bool Temperature::raw_temps_ready = false;

goto EXIT_M303;
}

// Run HAL idle tasks
TERN_(HAL_IDLETASK, HAL_idletask());

// Run UI update
TERN(DWIN_CREALITY_LCD, DWIN_Update(), ui.update());
}
wait_for_heatup = false;
Expand Down

0 comments on commit a7f3343

Please sign in to comment.