Jason Smith
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
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; |
|
|
|