Skip to content

Commit

Permalink
Blocking move followup
Browse files Browse the repository at this point in the history
  • Loading branch information
thinkyhead committed Apr 13, 2021
1 parent 7f56538 commit 3517fbd
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions Marlin/src/module/motion.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -367,11 +367,8 @@ void _internal_move_to_destination(const_feedRate_t fr_mm_s/*=0.0f*/
planner.e_factor[active_extruder] = 1.0f;
#endif

#if !IS_KINEMATIC
constexpr bool is_fast = false;
#endif
if (is_fast)
prepare_fast_move_to_destination();
if (TERN0(IS_KINEMATIC, is_fast))
TERN(IS_KINEMATIC, NOOP, prepare_line_to_destination());
else
prepare_line_to_destination();

Expand Down

0 comments on commit 3517fbd

Please sign in to comment.