Skip to content

Commit 8e03a4c

Browse files
authored
Keep HAL tasks running during PID Autotune (MarlinFirmware#19671)
1 parent 1403260 commit 8e03a4c

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

Marlin/src/module/temperature.cpp

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -637,6 +637,11 @@ volatile bool Temperature::raw_temps_ready = false;
637637

638638
goto EXIT_M303;
639639
}
640+
641+
// Run HAL idle tasks
642+
TERN_(HAL_IDLETASK, HAL_idletask());
643+
644+
// Run UI update
640645
TERN(DWIN_CREALITY_LCD, DWIN_Update(), ui.update());
641646
}
642647
wait_for_heatup = false;

0 commit comments

Comments
 (0)