Fix Temperature::over_autostart_threshold (#16749)

2.0.x
Jason Smith 5 years ago committed by GitHub
parent e58d1bf974
commit c3cab37d7e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -2143,7 +2143,7 @@ void Temperature::disable_all_heaters() {
bool Temperature::over_autostart_threshold() { bool Temperature::over_autostart_threshold() {
#if HOTENDS #if HOTENDS
HOTEND_LOOP() if (degTargetHotend(e) < (EXTRUDE_MINTEMP) / 2) return true; HOTEND_LOOP() if (degTargetHotend(e) > (EXTRUDE_MINTEMP) / 2) return true;
#endif #endif
#if HAS_HEATED_BED #if HAS_HEATED_BED
if (degTargetBed() > BED_MINTEMP) return true; if (degTargetBed() > BED_MINTEMP) return true;

Loading…
Cancel
Save