Browse Source

Fix formatting of extrapolate debug output

pull/1/head
Scott Lahteine 8 years ago
committed by GitHub
parent
commit
9a6c66602f
  1. 3
      Marlin/Marlin_main.cpp

3
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],

Loading…
Cancel
Save