|
@@ -199,6 +199,21 @@ SERIAL_ECHOLNPGM("Scaling factors:");
|
199
|
199
|
SERIAL_ECHOPAIR(" D" ,unscalePID_d(Kd));
|
200
|
200
|
SERIAL_ECHOLN("");
|
201
|
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);
|
|
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);
|
|
215
|
+ SERIAL_ECHOLN("");
|
|
216
|
+#endif
|
202
|
217
|
}
|
203
|
218
|
#endif
|
204
|
219
|
|