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 Apr 28, 2017
1 parent 1693f82 commit 3f410a9
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 @@ -4873,7 +4873,7 @@ inline void gcode_G28() {
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 @@ -4896,7 +4896,7 @@ inline void gcode_G28() {

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 3f410a9

Please sign in to comment.