Skip to content

Commit

Permalink
Removed + sign in front of verbose G29 logging.
Browse files Browse the repository at this point in the history
By removing the + the values can easy copy&paste into the
http://www.maui-3d.com/cgi-bin/plotG29 plotter.
  • Loading branch information
oderwat committed Jun 10, 2017
1 parent ece6951 commit ca0234e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Marlin/Marlin_main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4843,7 +4843,7 @@ void home_all_axes() { gcode_G28(true); }
NOMORE(min_diff, eqnBVector[ind] - z_tmp);

if (diff >= 0.0)
SERIAL_PROTOCOLPGM(" +"); // Include + for column alignment
SERIAL_PROTOCOLPGM(" "); // Include + for column alignment
else
SERIAL_PROTOCOLCHAR(' ');
SERIAL_PROTOCOL_F(diff, 5);
Expand All @@ -4866,7 +4866,7 @@ void home_all_axes() { gcode_G28(true); }

float diff = eqnBVector[ind] - z_tmp - min_diff;
if (diff >= 0.0)
SERIAL_PROTOCOLPGM(" +");
SERIAL_PROTOCOLPGM(" ");
// Include + for column alignment
else
SERIAL_PROTOCOLCHAR(' ');
Expand Down

0 comments on commit ca0234e

Please sign in to comment.