0
0
Fork 0
mirror of https://github.com/MarlinFirmware/Marlin.git synced 2025-01-18 23:49:49 +00:00

Keep HAL tasks running during PID Autotune (#19671)

This commit is contained in:
Victor Oliveira 2020-10-10 01:35:41 -03:00 committed by GitHub
parent 1403260487
commit 8e03a4cb93
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;