chiark
/
gitweb
/
~ianmdlvl
/
marlin.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f52e1a9
)
make it compile without autotemp
author
Bernhard Kubicek
<kubicek@gmx.at>
Sat, 19 Nov 2011 16:09:33 +0000
(17:09 +0100)
committer
Bernhard Kubicek
<kubicek@gmx.at>
Sat, 19 Nov 2011 16:09:33 +0000
(17:09 +0100)
Marlin/Marlin.pde
patch
|
blob
|
history
diff --git
a/Marlin/Marlin.pde
b/Marlin/Marlin.pde
index c0fc8675c18803314ccedde5bc667d62f86fc2fd..f619854da3625a04efdb20ca2fca09dca25514e5 100644
(file)
--- a/
Marlin/Marlin.pde
+++ b/
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();