Implement support for Dual X and Y endstops

This commit is contained in:
Scott Lahteine 2017-10-27 16:24:34 -05:00
parent 7e1232269a
commit 318c419f77
14 changed files with 718 additions and 268 deletions

View file

@ -331,6 +331,12 @@ extern float soft_endstop_min[XYZ], soft_endstop_max[XYZ];
void set_z_fade_height(const float zfh);
#endif
#if ENABLED(X_DUAL_ENDSTOPS)
extern float x_endstop_adj;
#endif
#if ENABLED(Y_DUAL_ENDSTOPS)
extern float y_endstop_adj;
#endif
#if ENABLED(Z_DUAL_ENDSTOPS)
extern float z_endstop_adj;
#endif