Skip to content

Commit

Permalink
🩹 Fix W axis blocking move
Browse files Browse the repository at this point in the history
Fixes #27332

Co-Authored-By: thebjtfellow <[email protected]>
  • Loading branch information
thinkyhead and thebjtfellow committed Aug 12, 2024
1 parent 7397e5a commit c792921
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Marlin/src/module/motion.h
Original file line number Diff line number Diff line change
Expand Up @@ -390,8 +390,8 @@ void do_blocking_move_to(const xyze_pos_t &raw, const_feedRate_t fr_mm_s=0.0f);
void do_blocking_move_to_xyzijku_v(const xyze_pos_t &raw, const_float_t v, const_feedRate_t fr_mm_s=0.0f);
#endif
#if HAS_W_AXIS
void do_blocking_move_to_w(const float rw, const feedRate_t &fr_mm_s=0.0f);
void do_blocking_move_to_xyzijkuv_w(const xyze_pos_t &raw, const float w, const feedRate_t &fr_mm_s=0.0f);
void do_blocking_move_to_w(const_float_t rw, const_feedRate_t fr_mm_s=0.0f);
void do_blocking_move_to_xyzijkuv_w(const xyze_pos_t &raw, const_float_t w, const_feedRate_t fr_mm_s=0.0f);
#endif

#if HAS_Y_AXIS
Expand Down

0 comments on commit c792921

Please sign in to comment.