Add stallGuard threshold for X2 (#15042)

This commit is contained in:
AlexandrZloy
2019-08-29 12:15:31 +07:00
committed by Scott Lahteine
parent e1d65b8937
commit 0ebaea94be
106 changed files with 127 additions and 9 deletions

View File

@ -217,6 +217,9 @@ void menu_tmc_current() {
#if X_SENSORLESS
void refresh_homing_thrs_X() { stepperX.refresh_homing_thrs(); }
#endif
#if X2_SENSORLESS
void refresh_homing_thrs_X2() { stepperX2.refresh_homing_thrs(); }
#endif
#if Y_SENSORLESS
void refresh_homing_thrs_Y() { stepperY.refresh_homing_thrs(); }
#endif
@ -230,6 +233,9 @@ void menu_tmc_current() {
#if X_SENSORLESS
TMC_EDIT_STORED_SGT(X);
#endif
#if X2_SENSORLESS
TMC_EDIT_STORED_SGT(X2);
#endif
#if Y_SENSORLESS
TMC_EDIT_STORED_SGT(Y);
#endif