@@ -628,6 +628,36 @@ volatile bool Temperature::raw_temps_ready = false;
628
628
* Class and Instance Methods
629
629
*/
630
630
631
+ #if ANY(HAS_PID_HEATING, MPC_AUTOTUNE)
632
+
633
+ /* *
634
+ * Run the minimal required activities during a tuning loop.
635
+ * TODO: Allow tuning routines to call idle() for more complete keepalive.
636
+ */
637
+ bool Temperature::tuning_idle (const millis_t &ms) {
638
+
639
+ // Run HAL idle tasks
640
+ hal.idletask ();
641
+
642
+ const bool temp_ready = updateTemperaturesIfReady ();
643
+
644
+ #if HAS_FAN_LOGIC
645
+ if (temp_ready) manage_extruder_fans (ms);
646
+ #else
647
+ UNUSED (ms);
648
+ #endif
649
+
650
+ // Run Controller Fan check (normally handled by manage_inactivity)
651
+ TERN_ (USE_CONTROLLER_FAN, controllerFan.update ());
652
+
653
+ // Run UI update
654
+ ui.update ();
655
+
656
+ return temp_ready;
657
+ }
658
+
659
+ #endif
660
+
631
661
#if HAS_PID_HEATING
632
662
633
663
inline void say_default_ () { SERIAL_ECHOPGM (" #define DEFAULT_" ); }
@@ -727,7 +757,11 @@ volatile bool Temperature::raw_temps_ready = false;
727
757
728
758
const millis_t ms = millis ();
729
759
730
- if (updateTemperaturesIfReady ()) { // temp sample ready
760
+ // Run minimal necessary machine tasks
761
+ const bool temp_ready = tuning_idle (ms);
762
+
763
+ // If a new sample has arrived process things
764
+ if (temp_ready) {
731
765
732
766
// Get the current temperature and constrain it
733
767
current_temp = GHV (degChamber (), degBed (), degHotend (heater_id));
@@ -738,8 +772,6 @@ volatile bool Temperature::raw_temps_ready = false;
738
772
ONHEATING (start_temp, current_temp, target);
739
773
#endif
740
774
741
- TERN_ (HAS_FAN_LOGIC, manage_extruder_fans (ms));
742
-
743
775
if (heating && current_temp > target && ELAPSED (ms, t2 + 5000UL )) {
744
776
heating = false ;
745
777
SHV ((bias - d) >> 1 );
@@ -885,12 +917,6 @@ volatile bool Temperature::raw_temps_ready = false;
885
917
886
918
goto EXIT_M303;
887
919
}
888
-
889
- // Run HAL idle tasks
890
- hal.idletask ();
891
-
892
- // Run UI update
893
- ui.update ();
894
920
}
895
921
wait_for_heatup = false ;
896
922
@@ -1142,20 +1168,18 @@ volatile bool Temperature::raw_temps_ready = false;
1142
1168
constexpr millis_t report_interval_ms = 1000UL ;
1143
1169
curr_time_ms = millis ();
1144
1170
1145
- if (updateTemperaturesIfReady ()) { // temp sample ready
1146
- current_temp = degHotend (e);
1147
- TERN_ (HAS_FAN_LOGIC, manage_extruder_fans (curr_time_ms));
1148
- }
1171
+ // Run minimal necessary machine tasks
1172
+ const bool temp_ready = tuning_idle (curr_time_ms);
1173
+
1174
+ // Set MPC temp if a new sample is ready
1175
+ if (temp_ready) current_temp = degHotend (e);
1149
1176
1150
1177
if (ELAPSED (curr_time_ms, next_report_ms)) {
1151
1178
next_report_ms += report_interval_ms;
1152
1179
print_heater_states (e);
1153
1180
SERIAL_EOL ();
1154
1181
}
1155
1182
1156
- hal.idletask ();
1157
- ui.update ();
1158
-
1159
1183
if (!wait_for_heatup) {
1160
1184
SERIAL_ECHOLNPGM (STR_MPC_AUTOTUNE_INTERRUPTED);
1161
1185
TERN_ (DWIN_LCD_PROUI, dwinMPCTuning (MPC_INTERRUPTED));
0 commit comments