aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--marlinfw/config/Configuration.h10
-rw-r--r--marlinfw/config/Configuration_adv.h4
2 files changed, 7 insertions, 7 deletions
diff --git a/marlinfw/config/Configuration.h b/marlinfw/config/Configuration.h
index 6d188f4..63e37f5 100644
--- a/marlinfw/config/Configuration.h
+++ b/marlinfw/config/Configuration.h
@@ -644,7 +644,7 @@
#define X_MAX_ENDSTOP_INVERTING false // Set to true to invert the logic of the endstop.
#define Y_MAX_ENDSTOP_INVERTING false // Set to true to invert the logic of the endstop.
#define Z_MAX_ENDSTOP_INVERTING false // Set to true to invert the logic of the endstop.
-#define Z_MIN_PROBE_ENDSTOP_INVERTING false // Set to true to invert the logic of the probe.
+#define Z_MIN_PROBE_ENDSTOP_INVERTING true // Set to true to invert the logic of the probe.
/**
* Stepper Drivers
@@ -846,7 +846,7 @@
* Use G29 repeatedly, adjusting the Z height at each point with movement commands
* or (with LCD_BED_LEVELING) the LCD controller.
*/
-#define PROBE_MANUALLY
+//#define PROBE_MANUALLY
//#define MANUAL_PROBE_START_Z 0.2
/**
@@ -870,7 +870,7 @@
/**
* The BLTouch probe uses a Hall effect sensor and emulates a servo.
*/
-//#define BLTOUCH
+#define BLTOUCH
/**
* Touch-MI Probe by hotends.fr
@@ -1083,7 +1083,7 @@
#if ENABLED(MIN_SOFTWARE_ENDSTOPS)
#define MIN_SOFTWARE_ENDSTOP_X
#define MIN_SOFTWARE_ENDSTOP_Y
- #define MIN_SOFTWARE_ENDSTOP_Z
+ //#define MIN_SOFTWARE_ENDSTOP_Z -- For figuring out Z-offset (re-enable when done).
#endif
// Max software endstops constrain movement within maximum coordinate bounds
@@ -1322,7 +1322,7 @@
// - Move the Z probe (or nozzle) to a defined XY point before Z Homing when homing all axes (G28).
// - Prevent Z homing when the Z probe is outside bed area.
//
-//#define Z_SAFE_HOMING
+#define Z_SAFE_HOMING
#if ENABLED(Z_SAFE_HOMING)
#define Z_SAFE_HOMING_X_POINT 150 // X point for Z homing when homing all axes (G28).
diff --git a/marlinfw/config/Configuration_adv.h b/marlinfw/config/Configuration_adv.h
index d230c14..e36a525 100644
--- a/marlinfw/config/Configuration_adv.h
+++ b/marlinfw/config/Configuration_adv.h
@@ -1387,10 +1387,10 @@
//#define BABYSTEP_DISPLAY_TOTAL // Display total babysteps since last G28
- //#define BABYSTEP_ZPROBE_OFFSET // Combine M851 Z and Babystepping
+ #define BABYSTEP_ZPROBE_OFFSET // Combine M851 Z and Babystepping
#if ENABLED(BABYSTEP_ZPROBE_OFFSET)
//#define BABYSTEP_HOTEND_Z_OFFSET // For multiple hotends, babystep relative Z offsets
- //#define BABYSTEP_ZPROBE_GFX_OVERLAY // Enable graphical overlay on Z-offset editor
+ #define BABYSTEP_ZPROBE_GFX_OVERLAY // Enable graphical overlay on Z-offset editor
#endif
#endif