Merge pull request #1827 from thinkyhead/fixup_dualz
Fix compile error with Z_DUAL_ENDSTOPS
This commit is contained in:
commit
ed7a2f9fac
2 changed files with 9 additions and 5 deletions
|
@ -40,6 +40,10 @@
|
||||||
#define Y2_DIR_PIN 34
|
#define Y2_DIR_PIN 34
|
||||||
#define Y2_ENABLE_PIN 30
|
#define Y2_ENABLE_PIN 30
|
||||||
|
|
||||||
|
#undef Z2_STEP_PIN
|
||||||
|
#undef Z2_DIR_PIN
|
||||||
|
#undef Z2_ENABLE_PIN
|
||||||
|
|
||||||
#define Z2_STEP_PIN 36
|
#define Z2_STEP_PIN 36
|
||||||
#define Z2_DIR_PIN 34
|
#define Z2_DIR_PIN 34
|
||||||
#define Z2_ENABLE_PIN 30
|
#define Z2_ENABLE_PIN 30
|
||||||
|
|
|
@ -105,12 +105,12 @@ static volatile bool endstop_z_probe_hit = false; // Leaving this in even if Z_P
|
||||||
static bool old_z_max_endstop = false;
|
static bool old_z_max_endstop = false;
|
||||||
#endif
|
#endif
|
||||||
#ifdef Z_DUAL_ENDSTOPS
|
#ifdef Z_DUAL_ENDSTOPS
|
||||||
#if HAS_Z2_MIN
|
// #if HAS_Z2_MIN
|
||||||
static bool old_z2_min_endstop = false;
|
static bool old_z2_min_endstop = false;
|
||||||
#endif
|
// #endif
|
||||||
#if HAS_Z2_MAX
|
// #if HAS_Z2_MAX
|
||||||
static bool old_z2_max_endstop = false;
|
static bool old_z2_max_endstop = false;
|
||||||
#endif
|
// #endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef Z_PROBE_ENDSTOP // No need to check for valid pin, SanityCheck.h already does this.
|
#ifdef Z_PROBE_ENDSTOP // No need to check for valid pin, SanityCheck.h already does this.
|
||||||
|
|
Reference in a new issue