Skip to content

Commit

Permalink
Fix Temperature::over_autostart_threshold (MarlinFirmware#16749)
Browse files Browse the repository at this point in the history
  • Loading branch information
sjasonsmith authored and squiddity committed Feb 11, 2020
1 parent a3a9a2c commit ac85eb5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Marlin/src/module/temperature.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit ac85eb5

Please sign in to comment.