Skip to content

Commit 25caae1

Browse files
ellenspthinkyhead
andauthored
🩹 Fix PID / MPC tune background tasks (MarlinFirmware#26652)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
1 parent 12d7995 commit 25caae1

File tree

2 files changed

+42
-16
lines changed

2 files changed

+42
-16
lines changed

Marlin/src/module/temperature.cpp

+40-16
Original file line numberDiff line numberDiff line change
@@ -628,6 +628,36 @@ volatile bool Temperature::raw_temps_ready = false;
628628
* Class and Instance Methods
629629
*/
630630

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+
631661
#if HAS_PID_HEATING
632662

633663
inline void say_default_() { SERIAL_ECHOPGM("#define DEFAULT_"); }
@@ -727,7 +757,11 @@ volatile bool Temperature::raw_temps_ready = false;
727757

728758
const millis_t ms = millis();
729759

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) {
731765

732766
// Get the current temperature and constrain it
733767
current_temp = GHV(degChamber(), degBed(), degHotend(heater_id));
@@ -738,8 +772,6 @@ volatile bool Temperature::raw_temps_ready = false;
738772
ONHEATING(start_temp, current_temp, target);
739773
#endif
740774

741-
TERN_(HAS_FAN_LOGIC, manage_extruder_fans(ms));
742-
743775
if (heating && current_temp > target && ELAPSED(ms, t2 + 5000UL)) {
744776
heating = false;
745777
SHV((bias - d) >> 1);
@@ -885,12 +917,6 @@ volatile bool Temperature::raw_temps_ready = false;
885917

886918
goto EXIT_M303;
887919
}
888-
889-
// Run HAL idle tasks
890-
hal.idletask();
891-
892-
// Run UI update
893-
ui.update();
894920
}
895921
wait_for_heatup = false;
896922

@@ -1142,20 +1168,18 @@ volatile bool Temperature::raw_temps_ready = false;
11421168
constexpr millis_t report_interval_ms = 1000UL;
11431169
curr_time_ms = millis();
11441170

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);
11491176

11501177
if (ELAPSED(curr_time_ms, next_report_ms)) {
11511178
next_report_ms += report_interval_ms;
11521179
print_heater_states(e);
11531180
SERIAL_EOL();
11541181
}
11551182

1156-
hal.idletask();
1157-
ui.update();
1158-
11591183
if (!wait_for_heatup) {
11601184
SERIAL_ECHOLNPGM(STR_MPC_AUTOTUNE_INTERRUPTED);
11611185
TERN_(DWIN_LCD_PROUI, dwinMPCTuning(MPC_INTERRUPTED));

Marlin/src/module/temperature.h

+2
Original file line numberDiff line numberDiff line change
@@ -1197,6 +1197,8 @@ class Temperature {
11971197
static constexpr bool adaptive_fan_slowing = true;
11981198
#endif
11991199

1200+
static bool tuning_idle(const millis_t &ms);
1201+
12001202
/**
12011203
* M303 PID auto-tuning for hotends or bed
12021204
*/

0 commit comments

Comments
 (0)