Fix upper limit for x

This commit is contained in:
Carsten Weiße 2018-07-12 12:09:48 +02:00 committed by GitHub
parent 29d73029ae
commit bd7b3e0c52
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -9069,7 +9069,7 @@ void print_mesh_bed_leveling_table()
{
SERIAL_ECHOPGM("mesh bed leveling: ");
for (int8_t y = 0; y < MESH_NUM_Y_POINTS; ++ y)
for (int8_t x = 0; x < MESH_NUM_Y_POINTS; ++ x) {
for (int8_t x = 0; x < MESH_NUM_X_POINTS; ++ x) {
MYSERIAL.print(mbl.z_values[y][x], 3);
SERIAL_ECHOPGM(" ");
}