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.
This commit is contained in:
Alfred Melch 2021-08-14 11:35:18 +02:00
parent c51f7e094c
commit f629552fb1

View File

@ -750,10 +750,10 @@
// Enable one of the options below for CoreXY, CoreXZ, or CoreYZ kinematics, // Enable one of the options below for CoreXY, CoreXZ, or CoreYZ kinematics,
// either in the usual order or reversed // either in the usual order or reversed
//#define COREXY #define COREXY
//#define COREXZ //#define COREXZ
//#define COREYZ //#define COREYZ
#define COREYX //#define COREYX
//#define COREZX //#define COREZX
//#define COREZY //#define COREZY
//#define MARKFORGED_XY // MarkForged. See https://reprap.org/forum/read.php?152,504042 //#define MARKFORGED_XY // MarkForged. See https://reprap.org/forum/read.php?152,504042
@ -1312,7 +1312,7 @@
// Invert the stepper direction. Change (or reverse the motor connector) if an axis goes the wrong way. // Invert the stepper direction. Change (or reverse the motor connector) if an axis goes the wrong way.
#define INVERT_X_DIR false #define INVERT_X_DIR false
#define INVERT_Y_DIR true #define INVERT_Y_DIR false
#define INVERT_Z_DIR false #define INVERT_Z_DIR false
//#define INVERT_I_DIR false //#define INVERT_I_DIR false
//#define INVERT_J_DIR false //#define INVERT_J_DIR false