From 9a6c66602f43288195ce3e9a19555c6c667854d1 Mon Sep 17 00:00:00 2001 From: Scott Lahteine Date: Thu, 6 Oct 2016 17:04:22 -0500 Subject: [PATCH] Fix formatting of extrapolate debug output --- Marlin/Marlin_main.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Marlin/Marlin_main.cpp b/Marlin/Marlin_main.cpp index 4b6d062dd6..e9c7579382 100755 --- a/Marlin/Marlin_main.cpp +++ b/Marlin/Marlin_main.cpp @@ -2267,7 +2267,7 @@ static void clean_up_after_endstop_or_probe_move() { if (y < 10) SERIAL_CHAR(' '); SERIAL_ECHO((int)y); SERIAL_CHAR(ydir ? (ydir > 0 ? '+' : '-') : ' '); - SERIAL_ECHOLN(']'); + SERIAL_CHAR(']'); } #endif if (bed_level_grid[x][y] < 999.0) { @@ -2276,6 +2276,7 @@ static void clean_up_after_endstop_or_probe_move() { #endif return; // Don't overwrite good values. } + SERIAL_EOL; // Get X neighbors, Y neighbors, and XY neighbors float a1 = bed_level_grid[x + xdir][y], a2 = bed_level_grid[x + xdir * 2][y],