Merge pull request #6341 from benlye/benlye-lcd_babystep_zoffset

Fix lcd_babystep_zoffset()
This commit is contained in:
Scott Lahteine 2017-04-14 19:11:46 -05:00 committed by GitHub
commit b305699046

View file

@ -861,7 +861,7 @@ void kill_screen(const char* lcd_msg) {
const int babystep_increment = (int32_t)encoderPosition * (BABYSTEP_MULTIPLICATOR);
encoderPosition = 0;
const float new_zoffset = zprobe_zoffset + steps_to_mm[Z_AXIS] * babystep_increment;
const float new_zoffset = zprobe_zoffset + planner.steps_to_mm[Z_AXIS] * babystep_increment;
if (WITHIN(new_zoffset, Z_PROBE_OFFSET_RANGE_MIN, Z_PROBE_OFFSET_RANGE_MAX)) {
if (planner.abl_enabled)