Browse Source

Fix UBL+Delta segmented feedrate

Based on #7948
Scott Lahteine 7 years ago
parent
commit
c46189e429
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Marlin/src/module/motion.cpp

+ 1
- 1
Marlin/src/module/motion.cpp View File

797
 
797
 
798
   if (
798
   if (
799
     #if UBL_DELTA // Also works for CARTESIAN (smaller segments follow mesh more closely)
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
     #elif IS_KINEMATIC
801
     #elif IS_KINEMATIC
802
       prepare_kinematic_move_to(destination)
802
       prepare_kinematic_move_to(destination)
803
     #elif ENABLED(DUAL_X_CARRIAGE)
803
     #elif ENABLED(DUAL_X_CARRIAGE)

Loading…
Cancel
Save