Browse Source

Fix UBL+Delta segmented feedrate

Based on #7948
pull/1/head
Scott Lahteine 7 years ago
committed by GitHub
parent
commit
c46189e429
  1. 2
      Marlin/src/module/motion.cpp

2
Marlin/src/module/motion.cpp

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

Loading…
Cancel
Save