Browse Source

Improve debug of homing move feedrate

Scott Lahteine 7 years ago
parent
commit
2c1205d8b1
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      Marlin/src/module/motion.cpp

+ 2
- 2
Marlin/src/module/motion.cpp View File

@@ -1054,8 +1054,8 @@ static void do_homing_move(const AxisEnum axis, const float distance, const floa
1054 1054
       SERIAL_ECHOPAIR(">>> do_homing_move(", axis_codes[axis]);
1055 1055
       SERIAL_ECHOPAIR(", ", distance);
1056 1056
       SERIAL_ECHOPAIR(", ", fr_mm_s);
1057
-      SERIAL_CHAR(')');
1058
-      SERIAL_EOL();
1057
+      SERIAL_ECHOPAIR(" [", fr_mm_s ? fr_mm_s : homing_feedrate(axis));
1058
+      SERIAL_ECHOLNPGM("])");
1059 1059
     }
1060 1060
   #endif
1061 1061
 

Loading…
Cancel
Save