Browse Source

Fix formatting of extrapolate debug output

Scott Lahteine 8 years ago
parent
commit
9a6c66602f
1 changed files with 2 additions and 1 deletions
  1. 2
    1
      Marlin/Marlin_main.cpp

+ 2
- 1
Marlin/Marlin_main.cpp View File

@@ -2267,7 +2267,7 @@ static void clean_up_after_endstop_or_probe_move() {
2267 2267
         if (y < 10) SERIAL_CHAR(' ');
2268 2268
         SERIAL_ECHO((int)y);
2269 2269
         SERIAL_CHAR(ydir ? (ydir > 0 ? '+' : '-') : ' ');
2270
-        SERIAL_ECHOLN(']');
2270
+        SERIAL_CHAR(']');
2271 2271
       }
2272 2272
     #endif
2273 2273
     if (bed_level_grid[x][y] < 999.0) {
@@ -2276,6 +2276,7 @@ static void clean_up_after_endstop_or_probe_move() {
2276 2276
       #endif
2277 2277
       return;  // Don't overwrite good values.
2278 2278
     }
2279
+    SERIAL_EOL;
2279 2280
 
2280 2281
     // Get X neighbors, Y neighbors, and XY neighbors
2281 2282
     float a1 = bed_level_grid[x + xdir][y], a2 = bed_level_grid[x + xdir * 2][y],

Loading…
Cancel
Save