Browse Source

Have Kossel Pro use Z_MIN_PROBE_ENDSTOP (#9586)

Scott Lahteine 7 years ago
parent
commit
8e0c107545
No account linked to committer's email address

+ 2
- 2
Marlin/src/config/examples/delta/kossel_pro/Configuration.h View File

@@ -671,7 +671,7 @@
671 671
  *
672 672
  * Enable this option for a probe connected to the Z Min endstop pin.
673 673
  */
674
-#define Z_MIN_PROBE_USES_Z_MIN_ENDSTOP_PIN
674
+//#define Z_MIN_PROBE_USES_Z_MIN_ENDSTOP_PIN
675 675
 
676 676
 /**
677 677
  * Z_MIN_PROBE_ENDSTOP
@@ -692,7 +692,7 @@
692 692
  * disastrous consequences. Use with caution and do your homework.
693 693
  *
694 694
  */
695
-//#define Z_MIN_PROBE_ENDSTOP
695
+#define Z_MIN_PROBE_ENDSTOP
696 696
 
697 697
 /**
698 698
  * Probe Type

+ 1
- 3
Marlin/src/inc/SanityCheck.h View File

@@ -621,9 +621,7 @@ static_assert(1 >= 0
621 621
  * Delta requirements
622 622
  */
623 623
 #if ENABLED(DELTA)
624
-  #if HAS_BED_PROBE && ENABLED(Z_MIN_PROBE_ENDSTOP)
625
-    #error "Delta probably shouldn't use Z_MIN_PROBE_ENDSTOP. Comment out this line to continue."
626
-  #elif DISABLED(USE_XMAX_PLUG) && DISABLED(USE_YMAX_PLUG) && DISABLED(USE_ZMAX_PLUG)
624
+  #if DISABLED(USE_XMAX_PLUG) && DISABLED(USE_YMAX_PLUG) && DISABLED(USE_ZMAX_PLUG)
627 625
     #error "You probably want to use Max Endstops for DELTA!"
628 626
   #elif ENABLED(ENABLE_LEVELING_FADE_HEIGHT) && DISABLED(AUTO_BED_LEVELING_BILINEAR) && !UBL_SEGMENTED
629 627
     #error "ENABLE_LEVELING_FADE_HEIGHT on DELTA requires AUTO_BED_LEVELING_BILINEAR or AUTO_BED_LEVELING_UBL."

Loading…
Cancel
Save