From 37fb26b557ea086678cf7f759e384a2f6bb4e638 Mon Sep 17 00:00:00 2001 From: Scott Lahteine Date: Sun, 11 Aug 2024 19:57:15 -0500 Subject: [PATCH] =?UTF-8?q?=F0=9F=A9=B9=20Fix=20W=20axis=20blocking=20move?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes #27332 Co-Authored-By: thebjtfellow <110046297+thebjtfellow@users.noreply.github.com> Co-Authored-By: DerAndere <26200979+DerAndere1@users.noreply.github.com> --- Marlin/src/module/motion.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Marlin/src/module/motion.h b/Marlin/src/module/motion.h index 88fd69fbd06e..3a641a6f32b9 100644 --- a/Marlin/src/module/motion.h +++ b/Marlin/src/module/motion.h @@ -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