diff options
author | Eddie Ehlin <eddiex@eddiex.se> | 2020-02-16 11:39:30 +0100 |
---|---|---|
committer | Eddie Ehlin <eddiex@eddiex.se> | 2020-02-16 11:39:30 +0100 |
commit | 361ac584817720ae045eeea5ec03728b7c20e52b (patch) | |
tree | 9eb5cd5eebf4e3b5d2bdc2f8f4e3e4cdd852dff1 /marlinfw | |
parent | 7a34358058e9cbdddd12fc85fd034c66978b1a59 (diff) | |
download | 3DPrinter-CR10S-361ac584817720ae045eeea5ec03728b7c20e52b.tar.gz 3DPrinter-CR10S-361ac584817720ae045eeea5ec03728b7c20e52b.zip |
Added offsets, Z_MIN_PROBE_ENDSTOP_INVERTING = false, removed PINS_DEBUGGING
Diffstat (limited to 'marlinfw')
-rw-r--r-- | marlinfw/config/Configuration.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/marlinfw/config/Configuration.h b/marlinfw/config/Configuration.h index 83a920c..e608e62 100644 --- a/marlinfw/config/Configuration.h +++ b/marlinfw/config/Configuration.h @@ -653,7 +653,7 @@ #define X_MAX_ENDSTOP_INVERTING false // Set to true to invert the logic of the endstop. #define Y_MAX_ENDSTOP_INVERTING false // Set to true to invert the logic of the endstop. #define Z_MAX_ENDSTOP_INVERTING false // Set to true to invert the logic of the endstop. -#define Z_MIN_PROBE_ENDSTOP_INVERTING true // Set to true to invert the logic of the probe. +#define Z_MIN_PROBE_ENDSTOP_INVERTING false // Set to true to invert the logic of the probe. /** * Stepper Drivers @@ -940,7 +940,7 @@ * * Specify a Probe position as { X, Y, Z } */ -#define NOZZLE_TO_PROBE_OFFSET { 10, 10, 0 } +#define NOZZLE_TO_PROBE_OFFSET { -45, -9, 0 } // 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. @@ -964,7 +964,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 3 +//#define MULTIPLE_PROBING 3 //#define EXTRA_PROBING 1 /** |