aboutsummaryrefslogtreecommitdiffstats
path: root/marlinfw-skr-e3-mini-v2
diff options
context:
space:
mode:
authorEddie Ehlin <eddiex@eddiex.se>2021-10-08 10:05:43 +0200
committerEddie Ehlin <eddiex@eddiex.se>2021-10-08 10:05:43 +0200
commitbcffc7a8e502aedbb17bfe623d263a27bb382d46 (patch)
tree2f20882486a3ce5e4a1779e7f741314d27579213 /marlinfw-skr-e3-mini-v2
parent1c4bbff2fadfa8eed3f1c43992a1aae1d303cddf (diff)
download3DPrinter-CR10S-bcffc7a8e502aedbb17bfe623d263a27bb382d46.tar.gz
3DPrinter-CR10S-bcffc7a8e502aedbb17bfe623d263a27bb382d46.zip
Added BLTouch related config (WIP)
Diffstat (limited to 'marlinfw-skr-e3-mini-v2')
-rw-r--r--marlinfw-skr-e3-mini-v2/config-2.0.9.1/Configuration.h16
-rw-r--r--marlinfw-skr-e3-mini-v2/config-2.0.9.1/Configuration_adv.h4
2 files changed, 10 insertions, 10 deletions
diff --git a/marlinfw-skr-e3-mini-v2/config-2.0.9.1/Configuration.h b/marlinfw-skr-e3-mini-v2/config-2.0.9.1/Configuration.h
index 4fc2492..53db153 100644
--- a/marlinfw-skr-e3-mini-v2/config-2.0.9.1/Configuration.h
+++ b/marlinfw-skr-e3-mini-v2/config-2.0.9.1/Configuration.h
@@ -1058,7 +1058,7 @@
/**
* The BLTouch probe uses a Hall effect sensor and emulates a servo.
*/
-//#define BLTOUCH
+#define BLTOUCH
/**
* Touch-MI Probe by hotends.fr
@@ -1150,11 +1150,11 @@
* | [-] |
* O-- FRONT --+
*/
-#define NOZZLE_TO_PROBE_OFFSET { 10, 10, 0 }
+#define NOZZLE_TO_PROBE_OFFSET { -43, -10, 0 } // Z-offset usually -2.58
// Most probes should stay away from the edges of the bed, but
// with NOZZLE_AS_PROBE this can be negative for a wider probing area.
-#define PROBING_MARGIN 10
+#define PROBING_MARGIN 40
// X and Y axis travel speed (mm/min) between probes
#define XY_PROBE_FEEDRATE (133*60)
@@ -1201,7 +1201,7 @@
* A total of 2 does fast/slow probes with a weighted average.
* A total of 3 or more adds more slow probes, taking the average.
*/
-//#define MULTIPLE_PROBING 2
+#define MULTIPLE_PROBING 2
//#define EXTRA_PROBING 1
/**
@@ -1507,9 +1507,9 @@
*/
//#define AUTO_BED_LEVELING_3POINT
//#define AUTO_BED_LEVELING_LINEAR
-//#define AUTO_BED_LEVELING_BILINEAR
+#define AUTO_BED_LEVELING_BILINEAR
//#define AUTO_BED_LEVELING_UBL
-#define MESH_BED_LEVELING
+//#define MESH_BED_LEVELING
/**
* Normally G28 leaves leveling disabled on completion. Enable one of
@@ -1574,7 +1574,7 @@
#if EITHER(AUTO_BED_LEVELING_LINEAR, AUTO_BED_LEVELING_BILINEAR)
// Set the number of grid points per dimension.
- #define GRID_MAX_POINTS_X 5
+ #define GRID_MAX_POINTS_X 9
#define GRID_MAX_POINTS_Y GRID_MAX_POINTS_X
// Probe along the Y axis, advancing X after each column
@@ -1708,7 +1708,7 @@
* - Allows Z homing only when XY positions are known and trusted.
* - If stepper drivers sleep, XY homing may be required again before Z homing.
*/
-//#define Z_SAFE_HOMING
+#define Z_SAFE_HOMING
#if ENABLED(Z_SAFE_HOMING)
#define Z_SAFE_HOMING_X_POINT X_CENTER // X point for Z homing
diff --git a/marlinfw-skr-e3-mini-v2/config-2.0.9.1/Configuration_adv.h b/marlinfw-skr-e3-mini-v2/config-2.0.9.1/Configuration_adv.h
index b5ff771..3421a33 100644
--- a/marlinfw-skr-e3-mini-v2/config-2.0.9.1/Configuration_adv.h
+++ b/marlinfw-skr-e3-mini-v2/config-2.0.9.1/Configuration_adv.h
@@ -1192,14 +1192,14 @@
// Add Probe Z Offset calibration to the Z Probe Offsets menu
#if HAS_BED_PROBE
- //#define PROBE_OFFSET_WIZARD
+ #define PROBE_OFFSET_WIZARD
#if ENABLED(PROBE_OFFSET_WIZARD)
//
// Enable to init the Probe Z-Offset when starting the Wizard.
// Use a height slightly above the estimated nozzle-to-probe Z offset.
// For example, with an offset of -5, consider a starting height of -4.
//
- //#define PROBE_OFFSET_WIZARD_START_Z -4.0
+ #define PROBE_OFFSET_WIZARD_START_Z -2.0
// Set a convenient position to do the calibration (probing point and nozzle/bed-distance)
//#define PROBE_OFFSET_WIZARD_XY_POS { X_CENTER, Y_CENTER }