|
@@ -532,21 +532,51 @@
|
532
|
532
|
#define DEFAULT_ZJERK 1.0
|
533
|
533
|
#define DEFAULT_EJERK 4.0
|
534
|
534
|
|
|
535
|
+//===========================================================================
|
|
536
|
+//============================= Z Probe Options =============================
|
|
537
|
+//===========================================================================
|
|
538
|
+// @section probes
|
|
539
|
+
|
|
540
|
+//
|
|
541
|
+// See http://marlinfw.org/configuration/probes.html
|
|
542
|
+//
|
|
543
|
+
|
|
544
|
+
|
|
545
|
+/**
|
|
546
|
+ * Z_MIN_PROBE_USES_Z_MIN_ENDSTOP_PIN
|
|
547
|
+ *
|
|
548
|
+ * Enable this option for a probe connected to the Z Min endstop pin.
|
|
549
|
+ */
|
|
550
|
+#define Z_MIN_PROBE_USES_Z_MIN_ENDSTOP_PIN
|
|
551
|
+
|
535
|
552
|
|
536
|
553
|
/**
|
537
|
|
- * ===========================================================================
|
538
|
|
- * ============================= Z Probe Options =============================
|
539
|
|
- * ===========================================================================
|
540
|
|
- * @section probes
|
|
554
|
+ * Z_MIN_PROBE_ENDSTOP
|
|
555
|
+ *
|
|
556
|
+ * Enable this option for a probe connected to any pin except Z-Min.
|
|
557
|
+ * (By default Marlin assumes the Z-Max endstop pin.)
|
|
558
|
+ * To use a custom Z Probe pin, set Z_MIN_PROBE_PIN below.
|
|
559
|
+ *
|
|
560
|
+ * - The simplest option is to use a free endstop connector.
|
|
561
|
+ * - Use 5V for powered (usually inductive) sensors.
|
|
562
|
+ *
|
|
563
|
+ * - RAMPS 1.3/1.4 boards may use the 5V, GND, and Aux4->D32 pin:
|
|
564
|
+ * - For simple switches connect...
|
|
565
|
+ * - normally-closed switches to GND and D32.
|
|
566
|
+ * - normally-open switches to 5V and D32.
|
541
|
567
|
*
|
|
568
|
+ * WARNING: Setting the wrong pin may have unexpected and potentially
|
|
569
|
+ * disastrous consequences. Use with caution and do your homework.
|
542
|
570
|
*
|
|
571
|
+ */
|
|
572
|
+//#define Z_MIN_PROBE_ENDSTOP
|
|
573
|
+//#define Z_MIN_PROBE_PIN Z_MAX_PIN
|
|
574
|
+
|
|
575
|
+/**
|
543
|
576
|
* Probe Type
|
544
|
|
- * Probes are sensors/switches that are activated / deactivated before/after use.
|
545
|
577
|
*
|
546
|
578
|
* Allen Key Probes, Servo Probes, Z-Sled Probes, FIX_MOUNTED_PROBE, etc.
|
547
|
579
|
* You must activate one of these to use Auto Bed Leveling below.
|
548
|
|
- *
|
549
|
|
- * Use M851 to set the Z probe vertical offset from the nozzle. Store with M500.
|
550
|
580
|
*/
|
551
|
581
|
|
552
|
582
|
/**
|