浏览代码

Merge pull request #7948 from gallynero/patch-1

Enable change feedrate in delta
Scott Lahteine 7 年前
父节点
当前提交
d63d08ef8b
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1
    1
      Marlin/Marlin_main.cpp

+ 1
- 1
Marlin/Marlin_main.cpp 查看文件

@@ -12544,7 +12544,7 @@ void prepare_move_to_destination() {
12544 12544
 
12545 12545
   if (
12546 12546
     #if UBL_DELTA // Also works for CARTESIAN (smaller segments follow mesh more closely)
12547
-      ubl.prepare_segmented_line_to(destination, feedrate_mm_s)
12547
+      ubl.prepare_segmented_line_to(destination, MMS_SCALED(feedrate_mm_s))
12548 12548
     #elif IS_KINEMATIC
12549 12549
       prepare_kinematic_move_to(destination)
12550 12550
     #elif ENABLED(DUAL_X_CARRIAGE)

正在加载...
取消
保存