Fix PSU on for PID autotune (#19066)
This commit is contained in:
parent
7a750156ef
commit
acc90ad09f
@ -59,7 +59,6 @@ bool Power::is_power_needed() {
|
|||||||
|
|
||||||
// If any of the drivers or the bed are enabled...
|
// If any of the drivers or the bed are enabled...
|
||||||
if (X_ENABLE_READ() == X_ENABLE_ON || Y_ENABLE_READ() == Y_ENABLE_ON || Z_ENABLE_READ() == Z_ENABLE_ON
|
if (X_ENABLE_READ() == X_ENABLE_ON || Y_ENABLE_READ() == Y_ENABLE_ON || Z_ENABLE_READ() == Z_ENABLE_ON
|
||||||
|| TERN0(HAS_HEATED_BED, thermalManager.temp_bed.soft_pwm_amount > 0)
|
|
||||||
#if HAS_X2_ENABLE
|
#if HAS_X2_ENABLE
|
||||||
|| X2_ENABLE_READ() == X_ENABLE_ON
|
|| X2_ENABLE_READ() == X_ENABLE_ON
|
||||||
#endif
|
#endif
|
||||||
@ -75,8 +74,8 @@ bool Power::is_power_needed() {
|
|||||||
#endif
|
#endif
|
||||||
) return true;
|
) return true;
|
||||||
|
|
||||||
HOTEND_LOOP() if (thermalManager.degTargetHotend(e) > 0) return true;
|
HOTEND_LOOP() if (thermalManager.degTargetHotend(e) > 0 || thermalManager.temp_hotend[e].soft_pwm_amount > 0) return true;
|
||||||
if (TERN0(HAS_HEATED_BED, thermalManager.degTargetBed() > 0)) return true;
|
if (TERN0(HAS_HEATED_BED, thermalManager.degTargetBed() > 0 || thermalManager.temp_bed.soft_pwm_amount > 0)) return true;
|
||||||
|
|
||||||
#if HAS_HOTEND && AUTO_POWER_E_TEMP
|
#if HAS_HOTEND && AUTO_POWER_E_TEMP
|
||||||
HOTEND_LOOP() if (thermalManager.degHotend(e) >= AUTO_POWER_E_TEMP) return true;
|
HOTEND_LOOP() if (thermalManager.degHotend(e) >= AUTO_POWER_E_TEMP) return true;
|
||||||
|
@ -444,6 +444,7 @@ volatile bool Temperature::raw_temps_ready = false;
|
|||||||
LEDColor color = ONHEATINGSTART();
|
LEDColor color = ONHEATINGSTART();
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
TERN_(AUTO_POWER_CONTROL, powerManager.power_on());
|
||||||
TERN_(NO_FAN_SLOWING_IN_PID_TUNING, adaptive_fan_slowing = false);
|
TERN_(NO_FAN_SLOWING_IN_PID_TUNING, adaptive_fan_slowing = false);
|
||||||
|
|
||||||
// PID Tuning loop
|
// PID Tuning loop
|
||||||
|
Loading…
Reference in New Issue
Block a user