Browse Source

Fix Temperature::over_autostart_threshold (#16749)

pull/1/head
Jason Smith 5 years ago
committed by GitHub
parent
commit
c3cab37d7e
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      Marlin/src/module/temperature.cpp

2
Marlin/src/module/temperature.cpp

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

Loading…
Cancel
Save