Tweak debug output for probe in G29

This commit is contained in:
Scott Lahteine 2016-08-28 18:44:44 -05:00 committed by GitHub
parent a82a89bc58
commit 35a0c46f16

View file

@ -3514,9 +3514,9 @@ inline void gcode_G28() {
SERIAL_ECHOPAIR(" Y:", Y_PROBE_OFFSET_FROM_EXTRUDER);
SERIAL_ECHOPAIR(" Z:", zprobe_zoffset);
#if (X_PROBE_OFFSET_FROM_EXTRUDER > 0)
SERIAL_ECHOPGM("(Right");
SERIAL_ECHOPGM(" (Right");
#elif (X_PROBE_OFFSET_FROM_EXTRUDER < 0)
SERIAL_ECHOPGM("(Left");
SERIAL_ECHOPGM(" (Left");
#endif
#if (Y_PROBE_OFFSET_FROM_EXTRUDER > 0)
SERIAL_ECHOPGM("-Back");