|
656 | 656 | // Mechanical endstop with COM to ground and NC to Signal uses "false" here (most common setup). |
657 | 657 | #define X_MIN_ENDSTOP_INVERTING false // Set to true to invert the logic of the endstop. |
658 | 658 | #define Y_MIN_ENDSTOP_INVERTING false // Set to true to invert the logic of the endstop. |
659 | | -#define Z_MIN_ENDSTOP_INVERTING false // Set to true to invert the logic of the endstop. |
| 659 | +#define Z_MIN_ENDSTOP_INVERTING true // Set to true to invert the logic of the endstop. |
660 | 660 | #define X_MAX_ENDSTOP_INVERTING false // Set to true to invert the logic of the endstop. |
661 | 661 | #define Y_MAX_ENDSTOP_INVERTING false // Set to true to invert the logic of the endstop. |
662 | 662 | #define Z_MAX_ENDSTOP_INVERTING false // Set to true to invert the logic of the endstop. |
663 | | -#define Z_MIN_PROBE_ENDSTOP_INVERTING false // Set to true to invert the logic of the probe. |
| 663 | +#define Z_MIN_PROBE_ENDSTOP_INVERTING true // Set to true to invert the logic of the probe. |
664 | 664 |
|
665 | 665 | /** |
666 | 666 | * Stepper Drivers |
|
882 | 882 | * A Fix-Mounted Probe either doesn't deploy or needs manual deployment. |
883 | 883 | * (e.g., an inductive probe or a nozzle-based probe-switch.) |
884 | 884 | */ |
885 | | -//#define FIX_MOUNTED_PROBE |
| 885 | +#define FIX_MOUNTED_PROBE |
886 | 886 |
|
887 | 887 | /** |
888 | 888 | * Use the nozzle as the probe, as with a conductive |
|
986 | 986 | * | [-] | |
987 | 987 | * O-- FRONT --+ |
988 | 988 | */ |
989 | | -#define NOZZLE_TO_PROBE_OFFSET { 10, 10, 0 } |
| 989 | +// https://www.thingiverse.com/thing:2023947 |
| 990 | +// [2021-11-12 Fri 21:52] M851 Z-5.73 |
| 991 | +#define NOZZLE_TO_PROBE_OFFSET { 32.5, 5, -5.73 } |
990 | 992 |
|
991 | 993 | // Most probes should stay away from the edges of the bed, but |
992 | 994 | // with NOZZLE_AS_PROBE this can be negative for a wider probing area. |
|
1010 | 1012 | * A total of 2 does fast/slow probes with a weighted average. |
1011 | 1013 | * A total of 3 or more adds more slow probes, taking the average. |
1012 | 1014 | */ |
1013 | | -//#define MULTIPLE_PROBING 2 |
| 1015 | +#define MULTIPLE_PROBING 2 |
1014 | 1016 | //#define EXTRA_PROBING 1 |
1015 | 1017 |
|
1016 | 1018 | /** |
|
1234 | 1236 | */ |
1235 | 1237 | //#define AUTO_BED_LEVELING_3POINT |
1236 | 1238 | //#define AUTO_BED_LEVELING_LINEAR |
1237 | | -//#define AUTO_BED_LEVELING_BILINEAR |
| 1239 | +#define AUTO_BED_LEVELING_BILINEAR |
1238 | 1240 | //#define AUTO_BED_LEVELING_UBL |
1239 | 1241 | //#define MESH_BED_LEVELING |
1240 | 1242 |
|
|
1281 | 1283 | #if EITHER(AUTO_BED_LEVELING_LINEAR, AUTO_BED_LEVELING_BILINEAR) |
1282 | 1284 |
|
1283 | 1285 | // Set the number of grid points per dimension. |
1284 | | - #define GRID_MAX_POINTS_X 3 |
| 1286 | + #define GRID_MAX_POINTS_X 4 |
1285 | 1287 | #define GRID_MAX_POINTS_Y GRID_MAX_POINTS_X |
1286 | 1288 |
|
1287 | 1289 | // Probe along the Y axis, advancing X after each column |
|
1385 | 1387 | // - Move the Z probe (or nozzle) to a defined XY point before Z Homing. |
1386 | 1388 | // - Prevent Z homing when the Z probe is outside bed area. |
1387 | 1389 | // |
1388 | | -//#define Z_SAFE_HOMING |
| 1390 | +#define Z_SAFE_HOMING |
| 1391 | + |
| 1392 | +// TODO(bhavin192): might need to change this to some other place? |
1389 | 1393 |
|
1390 | 1394 | #if ENABLED(Z_SAFE_HOMING) |
1391 | 1395 | #define Z_SAFE_HOMING_X_POINT X_CENTER // X point for Z homing |
|
0 commit comments