@@ -70,7 +70,7 @@
|
|
70
70
|
// @section info
|
71
71
|
|
72
72
|
// Author info of this build printed to the host during boot and M115
|
73
|
-
#define STRING_CONFIG_H_AUTHOR "(
|
73
|
+
#define STRING_CONFIG_H_AUTHOR "(moyashi / @hitoriblog)" // Who made the changes.
|
74
74
|
//#define CUSTOM_VERSION_FILE Version.h // Path from the root directory (no quotes)
|
75
75
|
|
76
76
|
/**
|
@@ -840,10 +840,10 @@
|
|
840
840
|
* The probe replaces the Z-MIN endstop and is used for Z homing.
|
841
841
|
* (Automatically enables USE_PROBE_FOR_Z_HOMING.)
|
842
842
|
*/
|
843
|
-
|
843
|
+
//#define Z_MIN_PROBE_USES_Z_MIN_ENDSTOP_PIN
|
844
844
|
|
845
845
|
// Force the use of the probe for Z-axis homing
|
846
|
-
|
846
|
+
#define USE_PROBE_FOR_Z_HOMING
|
847
847
|
|
848
848
|
/**
|
849
849
|
* Z_MIN_PROBE_PIN
|
@@ -860,7 +860,7 @@
|
|
860
860
|
* - normally-closed switches to GND and D32.
|
861
861
|
* - normally-open switches to 5V and D32.
|
862
862
|
*/
|
863
|
-
|
863
|
+
#define Z_MIN_PROBE_PIN PC4 // Pin 32 is the RAMPS default
|
864
864
|
|
865
865
|
/**
|
866
866
|
* Probe Type
|
@@ -874,7 +874,7 @@
|
|
874
874
|
* Use G29 repeatedly, adjusting the Z height at each point with movement commands
|
875
875
|
* or (with LCD_BED_LEVELING) the LCD controller.
|
876
876
|
*/
|
877
|
-
|
877
|
+
//#define PROBE_MANUALLY
|
878
878
|
//#define MANUAL_PROBE_START_Z 0.2
|
879
879
|
|
880
880
|
/**
|
@@ -898,7 +898,7 @@
|
|
898
898
|
/**
|
899
899
|
* The BLTouch probe uses a Hall effect sensor and emulates a servo.
|
900
900
|
*/
|
901
|
-
|
901
|
+
#define BLTOUCH
|
902
902
|
|
903
903
|
/**
|
904
904
|
* Pressure sensor with a BLTouch-like interface
|
@@ -985,11 +985,11 @@
|
|
985
985
|
* | [-] |
|
986
986
|
* O-- FRONT --+
|
987
987
|
*/
|
988
|
-
#define NOZZLE_TO_PROBE_OFFSET {
|
988
|
+
#define NOZZLE_TO_PROBE_OFFSET { 27.5, 0, 0 }
|
989
989
|
|
990
990
|
// Most probes should stay away from the edges of the bed, but
|
991
991
|
// with NOZZLE_AS_PROBE this can be negative for a wider probing area.
|
992
|
-
#define PROBING_MARGIN
|
992
|
+
#define PROBING_MARGIN 10
|
993
993
|
|
994
994
|
// X and Y axis travel speed (mm/min) between probes
|
995
995
|
#define XY_PROBE_SPEED (133*60)
|
@@ -1233,9 +1233,9 @@
|
|
1233
1233
|
*/
|
1234
1234
|
//#define AUTO_BED_LEVELING_3POINT
|
1235
1235
|
//#define AUTO_BED_LEVELING_LINEAR
|
1236
|
-
|
1236
|
+
#define AUTO_BED_LEVELING_BILINEAR
|
1237
1237
|
//#define AUTO_BED_LEVELING_UBL
|
1238
|
-
|
1238
|
+
//#define MESH_BED_LEVELING
|
1239
1239
|
|
1240
1240
|
/**
|
1241
1241
|
* Normally G28 leaves leveling disabled on completion. Enable
|
@@ -1280,7 +1280,7 @@
|
|
1280
1280
|
#if EITHER(AUTO_BED_LEVELING_LINEAR, AUTO_BED_LEVELING_BILINEAR)
|
1281
1281
|
|
1282
1282
|
// Set the number of grid points per dimension.
|
1283
|
-
#define GRID_MAX_POINTS_X
|
1283
|
+
#define GRID_MAX_POINTS_X 4
|
1284
1284
|
#define GRID_MAX_POINTS_Y GRID_MAX_POINTS_X
|
1285
1285
|
|
1286
1286
|
// Probe along the Y axis, advancing X after each column
|
@@ -1384,7 +1384,7 @@
|
|
1384
1384
|
// - Move the Z probe (or nozzle) to a defined XY point before Z Homing.
|
1385
1385
|
// - Prevent Z homing when the Z probe is outside bed area.
|
1386
1386
|
//
|
1387
|
-
|
1387
|
+
#define Z_SAFE_HOMING
|
1388
1388
|
|
1389
1389
|
#if ENABLED(Z_SAFE_HOMING)
|
1390
1390
|
#define Z_SAFE_HOMING_X_POINT X_CENTER // X point for Z homing
|