Add stallGuard threshold for X2 (#15042)
This commit is contained in:
committed by
Scott Lahteine
parent
e1d65b8937
commit
0ebaea94be
@ -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
|
||||
|
Reference in New Issue
Block a user