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 committed Oct 10, 2020
1 parent 1403260 commit 8e03a4c
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 @@ -637,6 +637,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 8e03a4c

Please sign in to comment.