浏览代码

Merge pull request #1255 from mattsch/503_fwretract_dev_branch

503 fwretract dev branch
Bo Herrmannsen 10 年前
父节点
当前提交
b2000b7055
共有 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*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
 

正在加载...
取消
保存