Browse Source

Update for pull request #837

Matthew Schick 10 years ago
parent
commit
0468f81950
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      Marlin/ConfigurationStore.cpp

+ 2
- 2
Marlin/ConfigurationStore.cpp View File

@@ -204,14 +204,14 @@ SERIAL_ECHOLNPGM("Scaling factors:");
204 204
     SERIAL_ECHOLNPGM("Retract: S=Length (mm) F:Speed (mm/m) Z: ZLift (mm)");
205 205
     SERIAL_ECHO_START;
206 206
     SERIAL_ECHOPAIR("   M207 S",retract_length); 
207
-    SERIAL_ECHOPAIR(" F" ,retract_feedrate); 
207
+    SERIAL_ECHOPAIR(" F" ,retract_feedrate*60); 
208 208
     SERIAL_ECHOPAIR(" Z" ,retract_zlift);
209 209
     SERIAL_ECHOLN(""); 
210 210
     SERIAL_ECHO_START;
211 211
     SERIAL_ECHOLNPGM("Recover: S=Extra length (mm) F:Speed (mm/m)");
212 212
     SERIAL_ECHO_START;
213 213
     SERIAL_ECHOPAIR("   M208 S",retract_recover_length); 
214
-    SERIAL_ECHOPAIR(" F" ,retract_recover_feedrate); 
214
+    SERIAL_ECHOPAIR(" F" ,retract_recover_feedrate*60); 
215 215
     SERIAL_ECHOLN(""); 
216 216
 #endif
217 217
 } 

Loading…
Cancel
Save