|
|
@ -2212,7 +2212,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_CHAR(']'); |
|
|
|
SERIAL_ECHOLN(']'); |
|
|
|
} |
|
|
|
#endif |
|
|
|
if (bed_level_grid[x][y] < 999.0) { |
|
|
@ -2299,7 +2299,7 @@ static void clean_up_after_endstop_or_probe_move() { |
|
|
|
*/ |
|
|
|
static void print_bed_level() { |
|
|
|
SERIAL_ECHOPGM("Bilinear Leveling Grid:\n "); |
|
|
|
for (uint8_t x = 1; x < ABL_GRID_POINTS_X + 1; x++) { |
|
|
|
for (uint8_t x = 0; x < ABL_GRID_POINTS_X; x++) { |
|
|
|
SERIAL_PROTOCOLPGM(" "); |
|
|
|
if (x < 10) SERIAL_PROTOCOLCHAR(' '); |
|
|
|
SERIAL_PROTOCOL((int)x); |
|
|
@ -2307,7 +2307,7 @@ static void clean_up_after_endstop_or_probe_move() { |
|
|
|
SERIAL_EOL; |
|
|
|
for (uint8_t y = 0; y < ABL_GRID_POINTS_Y; y++) { |
|
|
|
if (y < 9) SERIAL_PROTOCOLCHAR(' '); |
|
|
|
SERIAL_PROTOCOL(y + 1); |
|
|
|
SERIAL_PROTOCOL(y); |
|
|
|
for (uint8_t x = 0; x < ABL_GRID_POINTS_X; x++) { |
|
|
|
SERIAL_PROTOCOLCHAR(' '); |
|
|
|
float offset = bed_level_grid[x][y]; |
|
|
|