diff options
author | Eddie Ehlin <eddiex@eddiex.se> | 2021-05-05 22:09:04 +0200 |
---|---|---|
committer | Eddie Ehlin <eddiex@eddiex.se> | 2021-05-05 22:09:04 +0200 |
commit | 110cc93ea227dd1dd1a1f48ada9694a50ef48be6 (patch) | |
tree | d012ebf34e18789eada4af98e140b9c5ca48a981 | |
parent | 57cb490194a878464c7430e5ef2c16f652434b7e (diff) | |
download | 3DPrinter-CR10S-110cc93ea227dd1dd1a1f48ada9694a50ef48be6.tar.gz 3DPrinter-CR10S-110cc93ea227dd1dd1a1f48ada9694a50ef48be6.zip |
Restored z-offset and also enabled probe offset wizard as well ass babystepping z offset.
-rw-r--r-- | marlinfw/config-2.0.8/Configuration.h | 2 | ||||
-rw-r--r-- | marlinfw/config-2.0.8/Configuration_adv.h | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/marlinfw/config-2.0.8/Configuration.h b/marlinfw/config-2.0.8/Configuration.h index 9b7ca62..8f9ca21 100644 --- a/marlinfw/config-2.0.8/Configuration.h +++ b/marlinfw/config-2.0.8/Configuration.h @@ -1054,7 +1054,7 @@ * | [-] | * O-- FRONT --+ */ -#define NOZZLE_TO_PROBE_OFFSET { -45, -9, -2.58 } +#define NOZZLE_TO_PROBE_OFFSET { -45, -9, 0} // Z 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. diff --git a/marlinfw/config-2.0.8/Configuration_adv.h b/marlinfw/config-2.0.8/Configuration_adv.h index f612e7d..4c9cab4 100644 --- a/marlinfw/config-2.0.8/Configuration_adv.h +++ b/marlinfw/config-2.0.8/Configuration_adv.h @@ -1160,7 +1160,7 @@ // 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. @@ -1813,7 +1813,7 @@ //#define BABYSTEP_DISPLAY_TOTAL // Display total babysteps since last G28 - //#define BABYSTEP_ZPROBE_OFFSET // Combine M851 Z and Babystepping + #define BABYSTEP_ZPROBE_OFFSET // Combine M851 Z and Babystepping #if ENABLED(BABYSTEP_ZPROBE_OFFSET) //#define BABYSTEP_HOTEND_Z_OFFSET // For multiple hotends, babystep relative Z offsets //#define BABYSTEP_ZPROBE_GFX_OVERLAY // Enable graphical overlay on Z-offset editor |