Browse Source

Enable change feedrate in delta

Enable change the relative feedrate on a printing job in delta machines with UBL
gallynero 7 years ago
parent
commit
94228d4522
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Marlin/Marlin_main.cpp

+ 1
- 1
Marlin/Marlin_main.cpp View File

12539
 
12539
 
12540
   if (
12540
   if (
12541
     #if UBL_DELTA // Also works for CARTESIAN (smaller segments follow mesh more closely)
12541
     #if UBL_DELTA // Also works for CARTESIAN (smaller segments follow mesh more closely)
12542
-      ubl.prepare_segmented_line_to(destination, feedrate_mm_s)
12542
+      ubl.prepare_segmented_line_to(destination, MMS_SCALED(feedrate_mm_s))
12543
     #elif IS_KINEMATIC
12543
     #elif IS_KINEMATIC
12544
       prepare_kinematic_move_to(destination)
12544
       prepare_kinematic_move_to(destination)
12545
     #elif ENABLED(DUAL_X_CARRIAGE)
12545
     #elif ENABLED(DUAL_X_CARRIAGE)

Loading…
Cancel
Save