mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2025-01-22 17:52:57 +00:00
🩹 Fix W axis blocking move
Fixes #27332 Co-Authored-By: thebjtfellow <110046297+thebjtfellow@users.noreply.github.com> Co-Authored-By: DerAndere <26200979+DerAndere1@users.noreply.github.com>
This commit is contained in:
parent
7397e5a41d
commit
37fb26b557
1 changed files with 2 additions and 2 deletions
|
@ -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);
|
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
|
#endif
|
||||||
#if HAS_W_AXIS
|
#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_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 w, 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
|
#endif
|
||||||
|
|
||||||
#if HAS_Y_AXIS
|
#if HAS_Y_AXIS
|
||||||
|
|
Loading…
Reference in a new issue