Skip to content

Commit d16f33d

Browse files
committed
1 parent e391de4 commit d16f33d

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

Marlin/Configuration.h

+11-11
Original file line numberDiff line numberDiff line change
@@ -841,7 +841,7 @@
841841
#define I_MAX_ENDSTOP_INVERTING false // Set to true to invert the logic of the endstop.
842842
#define J_MAX_ENDSTOP_INVERTING false // Set to true to invert the logic of the endstop.
843843
#define K_MAX_ENDSTOP_INVERTING false // Set to true to invert the logic of the endstop.
844-
#define Z_MIN_PROBE_ENDSTOP_INVERTING false // Set to true to invert the logic of the probe.
844+
#define Z_MIN_PROBE_ENDSTOP_INVERTING true // Set to true to invert the logic of the probe.
845845

846846
/**
847847
* Stepper Drivers
@@ -1034,7 +1034,7 @@
10341034
#define Z_MIN_PROBE_USES_Z_MIN_ENDSTOP_PIN
10351035

10361036
// Force the use of the probe for Z-axis homing
1037-
//#define USE_PROBE_FOR_Z_HOMING
1037+
#define USE_PROBE_FOR_Z_HOMING
10381038

10391039
/**
10401040
* Z_MIN_PROBE_PIN
@@ -1071,7 +1071,7 @@
10711071
* A Fix-Mounted Probe either doesn't deploy or needs manual deployment.
10721072
* (e.g., an inductive probe or a nozzle-based probe-switch.)
10731073
*/
1074-
//#define FIX_MOUNTED_PROBE
1074+
#define FIX_MOUNTED_PROBE
10751075

10761076
/**
10771077
* Use the nozzle as the probe, as with a conductive
@@ -1180,7 +1180,7 @@
11801180
* | [-] |
11811181
* O-- FRONT --+
11821182
*/
1183-
#define NOZZLE_TO_PROBE_OFFSET { 10, 10, 0 }
1183+
#define NOZZLE_TO_PROBE_OFFSET { 0, 0, 0 }
11841184

11851185
// Most probes should stay away from the edges of the bed, but
11861186
// with NOZZLE_AS_PROBE this can be negative for a wider probing area.
@@ -1539,14 +1539,14 @@
15391539
//#define AUTO_BED_LEVELING_LINEAR
15401540
//#define AUTO_BED_LEVELING_BILINEAR
15411541
//#define AUTO_BED_LEVELING_UBL
1542-
//#define MESH_BED_LEVELING
1542+
#define MESH_BED_LEVELING
15431543

15441544
/**
15451545
* Normally G28 leaves leveling disabled on completion. Enable one of
15461546
* these options to restore the prior leveling state or to always enable
15471547
* leveling immediately after G28.
15481548
*/
1549-
//#define RESTORE_LEVELING_AFTER_G28
1549+
#define RESTORE_LEVELING_AFTER_G28
15501550
//#define ENABLE_LEVELING_AFTER_G28
15511551

15521552
/**
@@ -1604,7 +1604,7 @@
16041604
#if EITHER(AUTO_BED_LEVELING_LINEAR, AUTO_BED_LEVELING_BILINEAR)
16051605

16061606
// Set the number of grid points per dimension.
1607-
#define GRID_MAX_POINTS_X 3
1607+
#define GRID_MAX_POINTS_X 5
16081608
#define GRID_MAX_POINTS_Y GRID_MAX_POINTS_X
16091609

16101610
// Probe along the Y axis, advancing X after each column
@@ -1657,7 +1657,7 @@
16571657
//===========================================================================
16581658

16591659
#define MESH_INSET 10 // Set Mesh bounds as an inset region of the bed
1660-
#define GRID_MAX_POINTS_X 3 // Don't use more than 7 points per axis, implementation limited.
1660+
#define GRID_MAX_POINTS_X 5 // Don't use more than 7 points per axis, implementation limited.
16611661
#define GRID_MAX_POINTS_Y GRID_MAX_POINTS_X
16621662

16631663
//#define MESH_G28_REST_ORIGIN // After homing all axes ('G28' or 'G28 XYZ') rest Z at Z_MIN_POS
@@ -1738,11 +1738,11 @@
17381738
* - Allows Z homing only when XY positions are known and trusted.
17391739
* - If stepper drivers sleep, XY homing may be required again before Z homing.
17401740
*/
1741-
//#define Z_SAFE_HOMING
1741+
#define Z_SAFE_HOMING
17421742

17431743
#if ENABLED(Z_SAFE_HOMING)
1744-
#define Z_SAFE_HOMING_X_POINT X_CENTER // X point for Z homing
1745-
#define Z_SAFE_HOMING_Y_POINT Y_CENTER // Y point for Z homing
1744+
#define Z_SAFE_HOMING_X_POINT 0 // X point for Z homing
1745+
#define Z_SAFE_HOMING_Y_POINT 0 // Y point for Z homing
17461746
#endif
17471747

17481748
// Homing speeds (mm/min)

0 commit comments

Comments
 (0)