Skip to content
Snippets Groups Projects
Commit 2c1205d8 authored by Scott Lahteine's avatar Scott Lahteine
Browse files

Improve debug of homing move feedrate

parent c8e4b7c8
Branches beta
Tags
No related merge requests found
...@@ -1054,8 +1054,8 @@ static void do_homing_move(const AxisEnum axis, const float distance, const floa ...@@ -1054,8 +1054,8 @@ static void do_homing_move(const AxisEnum axis, const float distance, const floa
SERIAL_ECHOPAIR(">>> do_homing_move(", axis_codes[axis]); SERIAL_ECHOPAIR(">>> do_homing_move(", axis_codes[axis]);
SERIAL_ECHOPAIR(", ", distance); SERIAL_ECHOPAIR(", ", distance);
SERIAL_ECHOPAIR(", ", fr_mm_s); SERIAL_ECHOPAIR(", ", fr_mm_s);
SERIAL_CHAR(')'); SERIAL_ECHOPAIR(" [", fr_mm_s ? fr_mm_s : homing_feedrate(axis));
SERIAL_EOL(); SERIAL_ECHOLNPGM("])");
} }
#endif #endif
... ...
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment