Browse Source

Fix Temperature::over_autostart_threshold (#16749)

Jason Smith 5 years ago
parent
commit
c3cab37d7e
No account linked to committer's email address
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Marlin/src/module/temperature.cpp

+ 1
- 1
Marlin/src/module/temperature.cpp View File

2143
 
2143
 
2144
   bool Temperature::over_autostart_threshold() {
2144
   bool Temperature::over_autostart_threshold() {
2145
     #if HOTENDS
2145
     #if HOTENDS
2146
-      HOTEND_LOOP() if (degTargetHotend(e) < (EXTRUDE_MINTEMP) / 2) return true;
2146
+      HOTEND_LOOP() if (degTargetHotend(e) > (EXTRUDE_MINTEMP) / 2) return true;
2147
     #endif
2147
     #endif
2148
     #if HAS_HEATED_BED
2148
     #if HAS_HEATED_BED
2149
       if (degTargetBed() > BED_MINTEMP) return true;
2149
       if (degTargetBed() > BED_MINTEMP) return true;

Loading…
Cancel
Save