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

Loading…
Cancel
Save