Browse Source

Allow Z_STOP_PIN override on SKR 1.4 (#17063)

vanilla_fb_2.0.x
Scott Lahteine 4 years ago
committed by GitHub
parent
commit
d4ac78535c
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 10
      Marlin/src/pins/lpc1768/pins_BTT_SKR_V1_4.h

10
Marlin/src/pins/lpc1768/pins_BTT_SKR_V1_4.h

@ -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
//

Loading…
Cancel
Save