From 308710ecf56464010ffaf6a89ff8b4680a1128bb Mon Sep 17 00:00:00 2001 From: thisiskeithb <13375512+thisiskeithb@users.noreply.github.com> Date: Sun, 7 Aug 2022 11:45:06 -0700 Subject: [PATCH 1/2] Rework Skew Correction Configuration Options --- Marlin/Configuration.h | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/Marlin/Configuration.h b/Marlin/Configuration.h index 2c16b8fb53fe..3bf1e6cf13a2 100644 --- a/Marlin/Configuration.h +++ b/Marlin/Configuration.h @@ -2129,9 +2129,9 @@ #define XY_DIAG_BD 282.8427124746 #define XY_SIDE_AD 200 - // Or, set the default skew factors directly here + // Or, set the XY skew factor directly here // to override the above measurements: - #define XY_SKEW_FACTOR 0.0 + //#define XY_SKEW_FACTOR 0.0 //#define SKEW_CORRECTION_FOR_Z #if ENABLED(SKEW_CORRECTION_FOR_Z) @@ -2140,8 +2140,11 @@ #define YZ_DIAG_AC 282.8427124746 #define YZ_DIAG_BD 282.8427124746 #define YZ_SIDE_AD 200 - #define XZ_SKEW_FACTOR 0.0 - #define YZ_SKEW_FACTOR 0.0 + + // Or, set the Z skew factors directly here + // to override the above measurements: + //#define XZ_SKEW_FACTOR 0.0 + //#define YZ_SKEW_FACTOR 0.0 #endif // Enable this option for M852 to set skew at runtime From 8e402bd8a608a58154d58971ae543ebb8c58a926 Mon Sep 17 00:00:00 2001 From: Scott Lahteine Date: Sat, 20 Aug 2022 13:42:29 -0500 Subject: [PATCH 2/2] followup --- Marlin/Configuration.h | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Marlin/Configuration.h b/Marlin/Configuration.h index 1f832589306a..9d82b3cc40a2 100644 --- a/Marlin/Configuration.h +++ b/Marlin/Configuration.h @@ -2134,8 +2134,7 @@ #define XY_DIAG_BD 282.8427124746 #define XY_SIDE_AD 200 - // Or, set the XY skew factor directly here - // to override the above measurements: + // Or, set the XY skew factor directly: //#define XY_SKEW_FACTOR 0.0 //#define SKEW_CORRECTION_FOR_Z @@ -2146,8 +2145,7 @@ #define YZ_DIAG_BD 282.8427124746 #define YZ_SIDE_AD 200 - // Or, set the Z skew factors directly here - // to override the above measurements: + // Or, set the Z skew factors directly: //#define XZ_SKEW_FACTOR 0.0 //#define YZ_SKEW_FACTOR 0.0 #endif