CoreXY sensorless homing (#17972)

This commit is contained in:
Scott Lahteine
2020-05-14 13:00:47 -05:00
committed by GitHub
parent 1d654b559d
commit 6ae7a40f99
3 changed files with 35 additions and 6 deletions

View File

@ -1587,6 +1587,15 @@
#if _HAS_STOP(Z,MAX)
#define HAS_Z_MAX 1
#endif
#if _HAS_STOP(X,STOP)
#define HAS_X_STOP 1
#endif
#if _HAS_STOP(Y,STOP)
#define HAS_Y_STOP 1
#endif
#if _HAS_STOP(Z,STOP)
#define HAS_Z_STOP 1
#endif
#if PIN_EXISTS(X2_MIN)
#define HAS_X2_MIN 1
#endif