Explorar el Código

Keep HAL tasks running during PID Autotune (#19671)

Victor Oliveira hace 4 años
padre
commit
8e03a4cb93
No account linked to committer's email address
Se han modificado 1 ficheros con 5 adiciones y 0 borrados
  1. 5
    0
      Marlin/src/module/temperature.cpp

+ 5
- 0
Marlin/src/module/temperature.cpp Ver fichero

@@ -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…
Cancelar
Guardar