From 86456eaf0bde09877846982daa1fc3f64c4826c1 Mon Sep 17 00:00:00 2001 From: Alfred Melch Date: Sat, 14 Aug 2021 11:35:18 +0200 Subject: [PATCH] Config: fix axis swap and CoreXY setting Y stepper was set to be reversed by default. This alone swapped the X and Y axis. The first fix was to enable COREYX instead of COREXY. With the correct Y direction the printer will run with the correct axis in COREXY mode. --- Marlin/Configuration.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Marlin/Configuration.h b/Marlin/Configuration.h index 12e46d92ce..b1c3c8f512 100644 --- a/Marlin/Configuration.h +++ b/Marlin/Configuration.h @@ -754,10 +754,10 @@ // Enable one of the options below for CoreXY, CoreXZ, or CoreYZ kinematics, // either in the usual order or reversed -//#define COREXY +#define COREXY //#define COREXZ //#define COREYZ -#define COREYX +//#define COREYX //#define COREZX //#define COREZY //#define MARKFORGED_XY // MarkForged. See https://reprap.org/forum/read.php?152,504042 @@ -1336,7 +1336,7 @@ // Invert the stepper direction. Change (or reverse the motor connector) if an axis goes the wrong way. #define INVERT_X_DIR false -#define INVERT_Y_DIR true +#define INVERT_Y_DIR false #define INVERT_Z_DIR false //#define INVERT_I_DIR false //#define INVERT_J_DIR false