Remove obsolete LULZBOT_TOUCH_UI code (#15284)

This commit is contained in:
Marcio Teixeira
2019-09-16 18:45:05 -06:00
committed by Scott Lahteine
parent 6282655d77
commit 4c00ddae56
4 changed files with 21 additions and 58 deletions

View File

@ -529,12 +529,18 @@ namespace ExtUI {
switch (axis) {
#if X_SENSORLESS && AXIS_HAS_STALLGUARD(X)
case X: stepperX.homing_threshold(value); break;
#else
UNUSED(value);
#endif
#if Y_SENSORLESS && AXIS_HAS_STALLGUARD(Y)
case Y: stepperY.homing_threshold(value); break;
#else
UNUSED(value);
#endif
#if Z_SENSORLESS && AXIS_HAS_STALLGUARD(Z)
case Z: stepperZ.homing_threshold(value); break;
#else
UNUSED(value);
#endif
default: break;
}