|
841 | 841 | #define I_MAX_ENDSTOP_INVERTING false // Set to true to invert the logic of the endstop.
|
842 | 842 | #define J_MAX_ENDSTOP_INVERTING false // Set to true to invert the logic of the endstop.
|
843 | 843 | #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. |
845 | 845 |
|
846 | 846 | /**
|
847 | 847 | * Stepper Drivers
|
|
1034 | 1034 | #define Z_MIN_PROBE_USES_Z_MIN_ENDSTOP_PIN
|
1035 | 1035 |
|
1036 | 1036 | // Force the use of the probe for Z-axis homing
|
1037 |
| -//#define USE_PROBE_FOR_Z_HOMING |
| 1037 | +#define USE_PROBE_FOR_Z_HOMING |
1038 | 1038 |
|
1039 | 1039 | /**
|
1040 | 1040 | * Z_MIN_PROBE_PIN
|
|
1071 | 1071 | * A Fix-Mounted Probe either doesn't deploy or needs manual deployment.
|
1072 | 1072 | * (e.g., an inductive probe or a nozzle-based probe-switch.)
|
1073 | 1073 | */
|
1074 |
| -//#define FIX_MOUNTED_PROBE |
| 1074 | +#define FIX_MOUNTED_PROBE |
1075 | 1075 |
|
1076 | 1076 | /**
|
1077 | 1077 | * Use the nozzle as the probe, as with a conductive
|
|
1180 | 1180 | * | [-] |
|
1181 | 1181 | * O-- FRONT --+
|
1182 | 1182 | */
|
1183 |
| -#define NOZZLE_TO_PROBE_OFFSET { 10, 10, 0 } |
| 1183 | +#define NOZZLE_TO_PROBE_OFFSET { 0, 0, 0 } |
1184 | 1184 |
|
1185 | 1185 | // Most probes should stay away from the edges of the bed, but
|
1186 | 1186 | // with NOZZLE_AS_PROBE this can be negative for a wider probing area.
|
|
1539 | 1539 | //#define AUTO_BED_LEVELING_LINEAR
|
1540 | 1540 | //#define AUTO_BED_LEVELING_BILINEAR
|
1541 | 1541 | //#define AUTO_BED_LEVELING_UBL
|
1542 |
| -//#define MESH_BED_LEVELING |
| 1542 | +#define MESH_BED_LEVELING |
1543 | 1543 |
|
1544 | 1544 | /**
|
1545 | 1545 | * Normally G28 leaves leveling disabled on completion. Enable one of
|
1546 | 1546 | * these options to restore the prior leveling state or to always enable
|
1547 | 1547 | * leveling immediately after G28.
|
1548 | 1548 | */
|
1549 |
| -//#define RESTORE_LEVELING_AFTER_G28 |
| 1549 | +#define RESTORE_LEVELING_AFTER_G28 |
1550 | 1550 | //#define ENABLE_LEVELING_AFTER_G28
|
1551 | 1551 |
|
1552 | 1552 | /**
|
|
1604 | 1604 | #if EITHER(AUTO_BED_LEVELING_LINEAR, AUTO_BED_LEVELING_BILINEAR)
|
1605 | 1605 |
|
1606 | 1606 | // Set the number of grid points per dimension.
|
1607 |
| - #define GRID_MAX_POINTS_X 3 |
| 1607 | + #define GRID_MAX_POINTS_X 5 |
1608 | 1608 | #define GRID_MAX_POINTS_Y GRID_MAX_POINTS_X
|
1609 | 1609 |
|
1610 | 1610 | // Probe along the Y axis, advancing X after each column
|
|
1657 | 1657 | //===========================================================================
|
1658 | 1658 |
|
1659 | 1659 | #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. |
1661 | 1661 | #define GRID_MAX_POINTS_Y GRID_MAX_POINTS_X
|
1662 | 1662 |
|
1663 | 1663 | //#define MESH_G28_REST_ORIGIN // After homing all axes ('G28' or 'G28 XYZ') rest Z at Z_MIN_POS
|
|
1738 | 1738 | * - Allows Z homing only when XY positions are known and trusted.
|
1739 | 1739 | * - If stepper drivers sleep, XY homing may be required again before Z homing.
|
1740 | 1740 | */
|
1741 |
| -//#define Z_SAFE_HOMING |
| 1741 | +#define Z_SAFE_HOMING |
1742 | 1742 |
|
1743 | 1743 | #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 |
1746 | 1746 | #endif
|
1747 | 1747 |
|
1748 | 1748 | // Homing speeds (mm/min)
|
|
0 commit comments