Browse Source

The Partial release message (which does not really tell you anything) overwrites the final print time on the LCD, which is a real shame. So I removed the message.

daid303 11 years ago
parent
commit
c421774422
1 changed files with 2 additions and 3 deletions
  1. 2
    3
      Marlin/Marlin_main.cpp

+ 2
- 3
Marlin/Marlin_main.cpp View File

@@ -146,7 +146,7 @@ CardReader card;
146 146
 #endif
147 147
 float homing_feedrate[] = HOMING_FEEDRATE;
148 148
 bool axis_relative_modes[] = AXIS_RELATIVE_MODES;
149
-int feedmultiply=100; //100->1 200->2
149
+int feedmultiply=100; //100->1 200->2
150 150
 bool feedmultiplychanged;
151 151
 int saved_feedmultiply;
152 152
 int extrudemultiply=100; //100->1 200->2
@@ -1188,7 +1188,6 @@ void process_commands()
1188 1188
               disable_e2();
1189 1189
             }
1190 1190
           #endif 
1191
-          LCD_MESSAGEPGM(MSG_PART_RELEASE);
1192 1191
         }
1193 1192
       }
1194 1193
       break;
@@ -1371,7 +1370,7 @@ void process_commands()
1371 1370
     {
1372 1371
       if(code_seen('S')) 
1373 1372
       {
1374
-        feedmultiply = code_value() ;
1373
+        feedmultiply = code_value() ;
1375 1374
         feedmultiplychanged = true;
1376 1375
       }
1377 1376
     }

Loading…
Cancel
Save