Fix lcd_babystep_zoffset()

Resolve 'steps_to_mm was not declared in this scope' compilation error after recent changes to merge babystepping with M851
This commit is contained in:
benlye 2017-04-14 18:38:35 +01:00 committed by GitHub
parent 28fec61f92
commit 1f9ee42750

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)