Browse Source

Keep HAL tasks running during PID Autotune (#19671)

Victor Oliveira 4 years ago
parent
commit
8e03a4cb93
No account linked to committer's email address
1 changed files with 5 additions and 0 deletions
  1. 5
    0
      Marlin/src/module/temperature.cpp

+ 5
- 0
Marlin/src/module/temperature.cpp View File

@@ -637,6 +637,11 @@ volatile bool Temperature::raw_temps_ready = false;
637 637
 
638 638
         goto EXIT_M303;
639 639
       }
640
+
641
+      // Run HAL idle tasks
642
+      TERN_(HAL_IDLETASK, HAL_idletask());
643
+
644
+      // Run UI update
640 645
       TERN(DWIN_CREALITY_LCD, DWIN_Update(), ui.update());
641 646
     }
642 647
     wait_for_heatup = false;

Loading…
Cancel
Save