No M914 or SGT set for non-sensorless axes
This commit is contained in:
parent
c7ec6c68e7
commit
9c058091e9
@ -268,6 +268,7 @@ void GcodeSuite::M912() {
|
|||||||
const int8_t value = (int8_t)constrain(parser.value_int(), -64, 63);
|
const int8_t value = (int8_t)constrain(parser.value_int(), -64, 63);
|
||||||
report = false;
|
report = false;
|
||||||
switch (i) {
|
switch (i) {
|
||||||
|
#if X_SENSORLESS
|
||||||
case X_AXIS:
|
case X_AXIS:
|
||||||
#if ENABLED(X_IS_TMC2130) || ENABLED(IS_TRAMS)
|
#if ENABLED(X_IS_TMC2130) || ENABLED(IS_TRAMS)
|
||||||
if (index == 0) TMC_SET_SGT(X);
|
if (index == 0) TMC_SET_SGT(X);
|
||||||
@ -276,6 +277,8 @@ void GcodeSuite::M912() {
|
|||||||
if (index == 1) TMC_SET_SGT(X2);
|
if (index == 1) TMC_SET_SGT(X2);
|
||||||
#endif
|
#endif
|
||||||
break;
|
break;
|
||||||
|
#endif
|
||||||
|
#if Y_SENSORLESS
|
||||||
case Y_AXIS:
|
case Y_AXIS:
|
||||||
#if ENABLED(Y_IS_TMC2130) || ENABLED(IS_TRAMS)
|
#if ENABLED(Y_IS_TMC2130) || ENABLED(IS_TRAMS)
|
||||||
if (index == 0) TMC_SET_SGT(Y);
|
if (index == 0) TMC_SET_SGT(Y);
|
||||||
@ -284,6 +287,8 @@ void GcodeSuite::M912() {
|
|||||||
if (index == 1) TMC_SET_SGT(Y2);
|
if (index == 1) TMC_SET_SGT(Y2);
|
||||||
#endif
|
#endif
|
||||||
break;
|
break;
|
||||||
|
#endif
|
||||||
|
#if Z_SENSORLESS
|
||||||
case Z_AXIS:
|
case Z_AXIS:
|
||||||
#if ENABLED(Z_IS_TMC2130) || ENABLED(IS_TRAMS)
|
#if ENABLED(Z_IS_TMC2130) || ENABLED(IS_TRAMS)
|
||||||
if (index == 0) TMC_SET_SGT(Z);
|
if (index == 0) TMC_SET_SGT(Z);
|
||||||
@ -292,10 +297,12 @@ void GcodeSuite::M912() {
|
|||||||
if (index == 1) TMC_SET_SGT(Z2);
|
if (index == 1) TMC_SET_SGT(Z2);
|
||||||
#endif
|
#endif
|
||||||
break;
|
break;
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (report) LOOP_XYZ(i) switch (i) {
|
if (report) LOOP_XYZ(i) switch (i) {
|
||||||
|
#if X_SENSORLESS
|
||||||
case X_AXIS:
|
case X_AXIS:
|
||||||
#if ENABLED(X_IS_TMC2130) || ENABLED(IS_TRAMS)
|
#if ENABLED(X_IS_TMC2130) || ENABLED(IS_TRAMS)
|
||||||
TMC_SAY_SGT(X);
|
TMC_SAY_SGT(X);
|
||||||
@ -304,6 +311,8 @@ void GcodeSuite::M912() {
|
|||||||
TMC_SAY_SGT(X2);
|
TMC_SAY_SGT(X2);
|
||||||
#endif
|
#endif
|
||||||
break;
|
break;
|
||||||
|
#endif
|
||||||
|
#if Y_SENSORLESS
|
||||||
case Y_AXIS:
|
case Y_AXIS:
|
||||||
#if ENABLED(Y_IS_TMC2130) || ENABLED(IS_TRAMS)
|
#if ENABLED(Y_IS_TMC2130) || ENABLED(IS_TRAMS)
|
||||||
TMC_SAY_SGT(Y);
|
TMC_SAY_SGT(Y);
|
||||||
@ -312,6 +321,8 @@ void GcodeSuite::M912() {
|
|||||||
TMC_SAY_SGT(Y2);
|
TMC_SAY_SGT(Y2);
|
||||||
#endif
|
#endif
|
||||||
break;
|
break;
|
||||||
|
#endif
|
||||||
|
#if Z_SENSORLESS
|
||||||
case Z_AXIS:
|
case Z_AXIS:
|
||||||
#if ENABLED(Z_IS_TMC2130) || ENABLED(IS_TRAMS)
|
#if ENABLED(Z_IS_TMC2130) || ENABLED(IS_TRAMS)
|
||||||
TMC_SAY_SGT(Z);
|
TMC_SAY_SGT(Z);
|
||||||
@ -320,6 +331,7 @@ void GcodeSuite::M912() {
|
|||||||
TMC_SAY_SGT(Z2);
|
TMC_SAY_SGT(Z2);
|
||||||
#endif
|
#endif
|
||||||
break;
|
break;
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#endif // SENSORLESS_HOMING
|
#endif // SENSORLESS_HOMING
|
||||||
|
@ -249,7 +249,7 @@
|
|||||||
|
|
||||||
#if ENABLED(SENSORLESS_HOMING)
|
#if ENABLED(SENSORLESS_HOMING)
|
||||||
#define TMC_INIT_SGT(P,Q) stepper##Q.sgt(P##_HOMING_SENSITIVITY);
|
#define TMC_INIT_SGT(P,Q) stepper##Q.sgt(P##_HOMING_SENSITIVITY);
|
||||||
#ifdef X_HOMING_SENSITIVITY
|
#if X_SENSORLESS
|
||||||
#if ENABLED(X_IS_TMC2130) || ENABLED(IS_TRAMS)
|
#if ENABLED(X_IS_TMC2130) || ENABLED(IS_TRAMS)
|
||||||
stepperX.sgt(X_HOMING_SENSITIVITY);
|
stepperX.sgt(X_HOMING_SENSITIVITY);
|
||||||
#endif
|
#endif
|
||||||
@ -257,7 +257,7 @@
|
|||||||
stepperX2.sgt(X_HOMING_SENSITIVITY);
|
stepperX2.sgt(X_HOMING_SENSITIVITY);
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
#ifdef Y_HOMING_SENSITIVITY
|
#if Y_SENSORLESS
|
||||||
#if ENABLED(Y_IS_TMC2130) || ENABLED(IS_TRAMS)
|
#if ENABLED(Y_IS_TMC2130) || ENABLED(IS_TRAMS)
|
||||||
stepperY.sgt(Y_HOMING_SENSITIVITY);
|
stepperY.sgt(Y_HOMING_SENSITIVITY);
|
||||||
#endif
|
#endif
|
||||||
@ -265,7 +265,7 @@
|
|||||||
stepperY2.sgt(Y_HOMING_SENSITIVITY);
|
stepperY2.sgt(Y_HOMING_SENSITIVITY);
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
#ifdef Z_HOMING_SENSITIVITY
|
#if Z_SENSORLESS
|
||||||
#if ENABLED(Z_IS_TMC2130) || ENABLED(IS_TRAMS)
|
#if ENABLED(Z_IS_TMC2130) || ENABLED(IS_TRAMS)
|
||||||
stepperZ.sgt(Z_HOMING_SENSITIVITY);
|
stepperZ.sgt(Z_HOMING_SENSITIVITY);
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user