Browse Source

make it compile without autotemp

pull/1/head
Bernhard Kubicek 13 years ago
parent
commit
2a6afee832
  1. 6
      Marlin/Marlin.pde

6
Marlin/Marlin.pde

@ -694,8 +694,10 @@ inline void process_commands()
break;
case 109:
{// M109 - Wait for extruder heater to reach target.
LCD_MESSAGEPGM("Heating...");
autotemp_enabled=false;
LCD_MESSAGEPGM("Heating...");
#ifdef AUTOTEMP
autotemp_enabled=false;
#endif
if (code_seen('S')) setTargetHotend0(code_value());
#ifdef AUTOTEMP
if (code_seen('S')) autotemp_min=code_value();

Loading…
Cancel
Save