Skip to content

Commit

Permalink
Keep HAL tasks running during PID Autotune (MarlinFirmware#19671)
Browse files Browse the repository at this point in the history
  • Loading branch information
rhapsodyv authored and Siarhei Pantsialei committed Oct 10, 2020
1 parent 0d65d5d commit 4466534
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 4466534

Please sign in to comment.