Browse Source

M109: Protected against EXTRUDE_MINTEMP expansion

pull/1/head
João Brázio 8 years ago
parent
commit
471d30cc1c
No known key found for this signature in database GPG Key ID: F62CFD37DFFDB540
  1. 2
      Marlin/Marlin_main.cpp

2
Marlin/Marlin_main.cpp

@ -4209,7 +4209,7 @@ inline void gcode_M109() {
// Prevents a wait-forever situation if R is misused i.e. M109 R0
// Try to calculate a ballpark safe margin by halving EXTRUDE_MINTEMP
if (degTargetHotend(target_extruder) < (EXTRUDE_MINTEMP/2)) return;
if (degTargetHotend(target_extruder) < (EXTRUDE_MINTEMP)/2) return;
#ifdef TEMP_RESIDENCY_TIME
long residency_start_ms = -1;

Loading…
Cancel
Save