Skip to content
Snippets Groups Projects
Unverified Commit 48fb4e09 authored by Roxy-3D's avatar Roxy-3D Committed by GitHub
Browse files

Get Bi-Linear to work with G26

More corrections to make that happen...
parent 0850b38b
Branches
Tags
No related merge requests found
......@@ -72,8 +72,8 @@ void reset_bed_level();
#endif
#if ENABLED(AUTO_BED_LEVELING_BILINEAR)
#define _GET_MESH_X(I) (bilinear_start[X_AXIS] + I * bilinear_grid_spacing[X_AXIS])
#define _GET_MESH_Y(J) (bilinear_start[Y_AXIS] + J * bilinear_grid_spacing[Y_AXIS])
#define _GET_MESH_X(I) (bilinear_start[X_AXIS] + (I) * bilinear_grid_spacing[X_AXIS])
#define _GET_MESH_Y(J) (bilinear_start[Y_AXIS] + (J) * bilinear_grid_spacing[Y_AXIS])
#elif ENABLED(AUTO_BED_LEVELING_UBL)
#define _GET_MESH_X(I) ubl.mesh_index_to_xpos(I)
#define _GET_MESH_Y(J) ubl.mesh_index_to_ypos(J)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment