Allow Z_STOP_PIN override on SKR 1.4 (#17063)

This commit is contained in:
Scott Lahteine 2020-03-04 13:12:48 -06:00 committed by GitHub
parent 70863fbd55
commit d4ac78535c
Signed by: GitHub
GPG key ID: 4AEE18F83AFDEB23

View file

@ -79,14 +79,20 @@
#define Z_MIN_PIN P1_00 // PWRDET
#endif
#else
#define Z_STOP_PIN P1_27 // Z-STOP
#ifndef Z_STOP_PIN
#define Z_STOP_PIN P1_27 // Z-STOP
#endif
#endif
//
// Z Probe (when not Z_MIN_PIN)
//
#ifndef Z_MIN_PROBE_PIN
#define Z_MIN_PROBE_PIN P0_10
#if Z_STOP_PIN != P1_27
#define Z_MIN_PROBE_PIN P1_27
#else
#define Z_MIN_PROBE_PIN P0_10
#endif
#endif
//