Merge pull request #923 from cwei/patch-1

Fix upper limit for x
This commit is contained in:
3d-gussner 2023-08-02 12:05:38 +02:00 committed by GitHub
commit 2ab9cbcd83
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -10718,7 +10718,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_ECHO(' ');
}