Swap MBL z_values dimensions to [X][Y]

This commit is contained in:
Scott Lahteine
2017-04-12 17:24:05 -05:00
parent 063f641651
commit 5e4f4d387f
4 changed files with 13 additions and 13 deletions

View File

@ -29,7 +29,7 @@
uint8_t mesh_bed_leveling::status;
float mesh_bed_leveling::z_offset,
mesh_bed_leveling::z_values[GRID_MAX_POINTS_Y][GRID_MAX_POINTS_X],
mesh_bed_leveling::z_values[GRID_MAX_POINTS_X][GRID_MAX_POINTS_Y],
mesh_bed_leveling::index_to_xpos[GRID_MAX_POINTS_X],
mesh_bed_leveling::index_to_ypos[GRID_MAX_POINTS_Y];