Browse Source

Merge pull request #7948 from gallynero/patch-1

Enable change feedrate in delta
Scott Lahteine 7 years ago
parent
commit
d63d08ef8b
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Marlin/Marlin_main.cpp

+ 1
- 1
Marlin/Marlin_main.cpp View File

12544
 
12544
 
12545
   if (
12545
   if (
12546
     #if UBL_DELTA // Also works for CARTESIAN (smaller segments follow mesh more closely)
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
     #elif IS_KINEMATIC
12548
     #elif IS_KINEMATIC
12549
       prepare_kinematic_move_to(destination)
12549
       prepare_kinematic_move_to(destination)
12550
     #elif ENABLED(DUAL_X_CARRIAGE)
12550
     #elif ENABLED(DUAL_X_CARRIAGE)

Loading…
Cancel
Save