Browse Source

Merge pull request #1255 from mattsch/503_fwretract_dev_branch

503 fwretract dev branch
Bo Herrmannsen 10 years ago
parent
commit
b2000b7055
1 changed files with 15 additions and 0 deletions
  1. 15
    0
      Marlin/ConfigurationStore.cpp

+ 15
- 0
Marlin/ConfigurationStore.cpp View File

199
     SERIAL_ECHOPAIR(" D" ,unscalePID_d(Kd));
199
     SERIAL_ECHOPAIR(" D" ,unscalePID_d(Kd));
200
     SERIAL_ECHOLN(""); 
200
     SERIAL_ECHOLN(""); 
201
 #endif
201
 #endif
202
+#ifdef FWRETRACT
203
+    SERIAL_ECHO_START;
204
+    SERIAL_ECHOLNPGM("Retract: S=Length (mm) F:Speed (mm/m) Z: ZLift (mm)");
205
+    SERIAL_ECHO_START;
206
+    SERIAL_ECHOPAIR("   M207 S",retract_length); 
207
+    SERIAL_ECHOPAIR(" F" ,retract_feedrate*60); 
208
+    SERIAL_ECHOPAIR(" Z" ,retract_zlift);
209
+    SERIAL_ECHOLN(""); 
210
+    SERIAL_ECHO_START;
211
+    SERIAL_ECHOLNPGM("Recover: S=Extra length (mm) F:Speed (mm/m)");
212
+    SERIAL_ECHO_START;
213
+    SERIAL_ECHOPAIR("   M208 S",retract_recover_length); 
214
+    SERIAL_ECHOPAIR(" F" ,retract_recover_feedrate*60); 
215
+    SERIAL_ECHOLN(""); 
216
+#endif
202
 } 
217
 } 
203
 #endif
218
 #endif
204
 
219
 

Loading…
Cancel
Save