|
664 | 664 | #define X_MAX_ENDSTOP_INVERTING false // Set to true to invert the logic of the endstop.
|
665 | 665 | #define Y_MAX_ENDSTOP_INVERTING true // Set to true to invert the logic of the endstop.
|
666 | 666 | #define Z_MAX_ENDSTOP_INVERTING false // Set to true to invert the logic of the endstop.
|
667 |
| -#define Z_MIN_PROBE_ENDSTOP_INVERTING false // Set to true to invert the logic of the probe. |
| 667 | +#define Z_MIN_PROBE_ENDSTOP_INVERTING true // Set to true to invert the logic of the probe. |
668 | 668 |
|
669 | 669 | /**
|
670 | 670 | * Stepper Drivers
|
|
748 | 748 | * X, Y, Z, E0 [, E1[, E2[, E3[, E4[, E5]]]]]
|
749 | 749 | */
|
750 | 750 | //@ keep speed reasonable
|
751 |
| -#define DEFAULT_MAX_FEEDRATE { 200, 200, 4, 75 } |
| 751 | +#define DEFAULT_MAX_FEEDRATE { 200, 200, 10, 75 } |
752 | 752 |
|
753 | 753 | /**
|
754 | 754 | * Default Max Acceleration (change/s) change = mm/s
|
|
861 | 861 | * or (with LCD_BED_LEVELING) the LCD controller.
|
862 | 862 | */
|
863 | 863 | //@
|
864 |
| -#define PROBE_MANUALLY |
| 864 | +//#define PROBE_MANUALLY |
865 | 865 | //#define MANUAL_PROBE_START_Z 0
|
866 | 866 |
|
867 | 867 | /**
|
868 | 868 | * A Fix-Mounted Probe either doesn't deploy or needs manual deployment.
|
869 | 869 | * (e.g., an inductive probe or a nozzle-based probe-switch.)
|
870 | 870 | */
|
871 |
| -//#define FIX_MOUNTED_PROBE |
| 871 | +#define FIX_MOUNTED_PROBE |
872 | 872 |
|
873 | 873 | /**
|
874 | 874 | * Z Servo Probe, such as an endstop switch on a rotating arm.
|
|
936 | 936 | *
|
937 | 937 | * Specify a Probe position as { X, Y, Z }
|
938 | 938 | */
|
939 |
| -#define NOZZLE_TO_PROBE_OFFSET { 0, 0, 0 } |
| 939 | +#define NOZZLE_TO_PROBE_OFFSET { 15, -46, 0 } |
940 | 940 |
|
941 | 941 | // Certain types of probes need to stay away from edges
|
942 | 942 | #define MIN_PROBE_EDGE 10
|
|
960 | 960 | * A total of 2 does fast/slow probes with a weighted average.
|
961 | 961 | * A total of 3 or more adds more slow probes, taking the average.
|
962 | 962 | */
|
963 |
| -//#define MULTIPLE_PROBING 2 |
| 963 | +#define MULTIPLE_PROBING 3 |
964 | 964 | //#define EXTRA_PROBING 1
|
965 | 965 |
|
966 | 966 | /**
|
|
977 | 977 | * Example: `M851 Z-5` with a CLEARANCE of 4 => 9mm from bed to nozzle.
|
978 | 978 | * But: `M851 Z+1` with a CLEARANCE of 2 => 2mm from bed to nozzle.
|
979 | 979 | */
|
980 |
| -#define Z_CLEARANCE_DEPLOY_PROBE 10 // Z Clearance for Deploy/Stow |
981 |
| -#define Z_CLEARANCE_BETWEEN_PROBES 5 // Z Clearance between probe points |
982 |
| -#define Z_CLEARANCE_MULTI_PROBE 5 // Z Clearance between multiple probes |
983 |
| -//#define Z_AFTER_PROBING 5 // Z position after probing is done |
| 980 | +#define Z_CLEARANCE_DEPLOY_PROBE 5 // Z Clearance for Deploy/Stow |
| 981 | +#define Z_CLEARANCE_BETWEEN_PROBES 3 // Z Clearance between probe points |
| 982 | +#define Z_CLEARANCE_MULTI_PROBE 2 // Z Clearance between multiple probes |
| 983 | +#define Z_AFTER_PROBING 5 // Z position after probing is done |
984 | 984 |
|
985 | 985 | #define Z_PROBE_LOW_POINT -2 // Farthest distance below the trigger-point to go before stopping
|
986 | 986 |
|
|
1187 | 1187 | */
|
1188 | 1188 | //#define AUTO_BED_LEVELING_3POINT
|
1189 | 1189 | //#define AUTO_BED_LEVELING_LINEAR
|
1190 |
| -//#define AUTO_BED_LEVELING_BILINEAR |
| 1190 | +#define AUTO_BED_LEVELING_BILINEAR |
1191 | 1191 | //#define AUTO_BED_LEVELING_UBL
|
1192 |
| -#define MESH_BED_LEVELING |
| 1192 | +//#define MESH_BED_LEVELING |
1193 | 1193 |
|
1194 | 1194 | /**
|
1195 | 1195 | * Normally G28 leaves leveling disabled on completion. Enable
|
|
1244 | 1244 |
|
1245 | 1245 | // Beyond the probed grid, continue the implied tilt?
|
1246 | 1246 | // Default is to maintain the height of the nearest edge.
|
1247 |
| - //#define EXTRAPOLATE_BEYOND_GRID |
| 1247 | + #define EXTRAPOLATE_BEYOND_GRID |
1248 | 1248 |
|
1249 | 1249 | //
|
1250 | 1250 | // Experimental Subdivision of the grid by Catmull-Rom method.
|
|
1342 | 1342 | // - Move the Z probe (or nozzle) to a defined XY point before Z Homing when homing all axes (G28).
|
1343 | 1343 | // - Prevent Z homing when the Z probe is outside bed area.
|
1344 | 1344 | //
|
1345 |
| -//#define Z_SAFE_HOMING |
| 1345 | +#define Z_SAFE_HOMING |
1346 | 1346 |
|
1347 | 1347 | #if ENABLED(Z_SAFE_HOMING)
|
1348 |
| - #define Z_SAFE_HOMING_X_POINT ((X_BED_SIZE) / 2) // X point for Z homing when homing all axes (G28). |
1349 |
| - #define Z_SAFE_HOMING_Y_POINT ((Y_BED_SIZE) / 2) // Y point for Z homing when homing all axes (G28). |
| 1348 | + #define Z_SAFE_HOMING_X_POINT (46) // X point for Z homing when homing all axes (G28). |
| 1349 | + #define Z_SAFE_HOMING_Y_POINT (100) // Y point for Z homing when homing all axes (G28). |
1350 | 1350 | #endif
|
1351 | 1351 |
|
1352 | 1352 | // Homing speeds (mm/m)
|
|
0 commit comments