浏览代码

Fix UBL+Delta segmented feedrate

Based on #7948
Scott Lahteine 7 年前
父节点
当前提交
c46189e429
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1
    1
      Marlin/src/module/motion.cpp

+ 1
- 1
Marlin/src/module/motion.cpp 查看文件

@@ -797,7 +797,7 @@ void prepare_move_to_destination() {
797 797
 
798 798
   if (
799 799
     #if UBL_DELTA // Also works for CARTESIAN (smaller segments follow mesh more closely)
800
-      ubl.prepare_segmented_line_to(destination, feedrate_mm_s)
800
+      ubl.prepare_segmented_line_to(destination, MMS_SCALED(feedrate_mm_s))
801 801
     #elif IS_KINEMATIC
802 802
       prepare_kinematic_move_to(destination)
803 803
     #elif ENABLED(DUAL_X_CARRIAGE)

正在加载...
取消
保存