mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2025-01-18 15:39:31 +00:00
Keep HAL tasks running during PID Autotune (#19671)
This commit is contained in:
parent
e8177735a0
commit
a7f334387c
1 changed files with 5 additions and 0 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue