ソースを参照

Add fwretract settings to M503 output

Matthew Schick 11年前
コミット
6e42c9e305
1個のファイルの変更15行の追加0行の削除
  1. 15
    0
      Marlin/ConfigurationStore.cpp

+ 15
- 0
Marlin/ConfigurationStore.cpp ファイルの表示

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); 
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
 #endif
218
 #endif
204
 
219
 

読み込み中…
キャンセル
保存