Skip to content

Commit c792921

Browse files
🩹 Fix W axis blocking move
Fixes #27332 Co-Authored-By: thebjtfellow <[email protected]>
1 parent 7397e5a commit c792921

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Marlin/src/module/motion.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -390,8 +390,8 @@ void do_blocking_move_to(const xyze_pos_t &raw, const_feedRate_t fr_mm_s=0.0f);
390390
void do_blocking_move_to_xyzijku_v(const xyze_pos_t &raw, const_float_t v, const_feedRate_t fr_mm_s=0.0f);
391391
#endif
392392
#if HAS_W_AXIS
393-
void do_blocking_move_to_w(const float rw, const feedRate_t &fr_mm_s=0.0f);
394-
void do_blocking_move_to_xyzijkuv_w(const xyze_pos_t &raw, const float w, const feedRate_t &fr_mm_s=0.0f);
393+
void do_blocking_move_to_w(const_float_t rw, const_feedRate_t fr_mm_s=0.0f);
394+
void do_blocking_move_to_xyzijkuv_w(const xyze_pos_t &raw, const_float_t w, const_feedRate_t fr_mm_s=0.0f);
395395
#endif
396396

397397
#if HAS_Y_AXIS

0 commit comments

Comments
 (0)