MESH_MEAS_NUM_X_POINTS constant correction to MESH_MEAS_NUM_Y_POINTS

This commit is contained in:
Laurentiu 2019-02-22 15:05:06 +02:00
parent 62875f2e95
commit 51827c578f

View File

@ -2405,7 +2405,7 @@ BedSkewOffsetDetectionResultType find_bed_offset_and_skew(int8_t verbosity_level
uint8_t iy = mesh_point / MESH_MEAS_NUM_X_POINTS;
if (iy & 1) ix = (MESH_MEAS_NUM_X_POINTS - 1) - ix;
current_position[X_AXIS] = BED_X(ix, MESH_MEAS_NUM_X_POINTS);
current_position[Y_AXIS] = BED_Y(iy, MESH_MEAS_NUM_X_POINTS);
current_position[Y_AXIS] = BED_Y(iy, MESH_MEAS_NUM_Y_POINTS);
go_to_current(homing_feedrate[X_AXIS] / 60);
delay_keep_alive(3000);
}