|
|
@ -407,7 +407,7 @@ class Temperature {
|
|
|
|
#if ENABLED(AUTO_POWER_CONTROL)
|
|
|
|
#if ENABLED(AUTO_POWER_CONTROL)
|
|
|
|
powerManager.power_on();
|
|
|
|
powerManager.power_on();
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
target_temperature[HOTEND_INDEX] = MIN(celsius, maxttemp[HOTEND_INDEX]);
|
|
|
|
target_temperature[HOTEND_INDEX] = MIN(celsius, maxttemp[HOTEND_INDEX] - 15);
|
|
|
|
#if WATCH_HOTENDS
|
|
|
|
#if WATCH_HOTENDS
|
|
|
|
start_watching_heater(HOTEND_INDEX);
|
|
|
|
start_watching_heater(HOTEND_INDEX);
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
@ -451,7 +451,7 @@ class Temperature {
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
target_temperature_bed =
|
|
|
|
target_temperature_bed =
|
|
|
|
#ifdef BED_MAXTEMP
|
|
|
|
#ifdef BED_MAXTEMP
|
|
|
|
MIN(celsius, BED_MAXTEMP)
|
|
|
|
MIN(celsius, BED_MAXTEMP - 15)
|
|
|
|
#else
|
|
|
|
#else
|
|
|
|
celsius
|
|
|
|
celsius
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|