From b8ab2d4987acb6de816840939d3fcf22315e8458 Mon Sep 17 00:00:00 2001 From: Scott Lahteine Date: Sat, 13 Jul 2024 23:39:27 -0500 Subject: [PATCH] =?UTF-8?q?=F0=9F=A9=B9=20Fix=20PINS=5FEXIST=20usage?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Marlin/src/pins/pins_postprocess.h | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/Marlin/src/pins/pins_postprocess.h b/Marlin/src/pins/pins_postprocess.h index 7b1b4fd0ade6..f9814b45d14b 100644 --- a/Marlin/src/pins/pins_postprocess.h +++ b/Marlin/src/pins/pins_postprocess.h @@ -722,7 +722,7 @@ #endif // X2 auto-assignment will use up an E stepper, but not if it's chained -#if HAS_X2_STEPPER && !defined(X2_STEP_PIN) && !PIN_EXISTS(X2_CS_PIN) +#if HAS_X2_STEPPER && !defined(X2_STEP_PIN) && !PIN_EXISTS(X2_CS) #define Y2_E_INDEX INCREMENT(X2_E_INDEX) #else #define Y2_E_INDEX X2_E_INDEX @@ -810,7 +810,7 @@ #endif // Y2 auto-assignment will use up an E stepper, but not if it's chained -#if HAS_Y2_STEPPER && !defined(Y2_STEP_PIN) && !PIN_EXISTS(Y2_CS_PIN) +#if HAS_Y2_STEPPER && !defined(Y2_STEP_PIN) && !PIN_EXISTS(Y2_CS) #define Z2_E_INDEX INCREMENT(Y2_E_INDEX) #else #define Z2_E_INDEX Y2_E_INDEX @@ -895,7 +895,7 @@ #endif // Z2 auto-assignment will use up an E stepper, but not if it's chained -#if NUM_Z_STEPPERS >= 2 && !defined(Z2_STEP_PIN) && !PIN_EXISTS(Z2_CS_PIN) +#if NUM_Z_STEPPERS >= 2 && !defined(Z2_STEP_PIN) && !PIN_EXISTS(Z2_CS) #define Z3_E_INDEX INCREMENT(Z2_E_INDEX) #else #define Z3_E_INDEX Z2_E_INDEX @@ -980,7 +980,7 @@ #endif // Z3 auto-assignment will use up an E stepper, but not if it's chained -#if NUM_Z_STEPPERS >= 3 && !defined(Z3_STEP_PIN) && !PIN_EXISTS(Z3_CS_PIN) +#if NUM_Z_STEPPERS >= 3 && !defined(Z3_STEP_PIN) && !PIN_EXISTS(Z3_CS) #define Z4_E_INDEX INCREMENT(Z3_E_INDEX) #else #define Z4_E_INDEX Z3_E_INDEX @@ -1065,7 +1065,7 @@ #endif // Z4 auto-assignment will use up an E stepper, but not if it's chained -#if NUM_Z_STEPPERS >= 4 && !defined(Z4_STEP_PIN) && !PIN_EXISTS(Z4_CS_PIN) +#if NUM_Z_STEPPERS >= 4 && !defined(Z4_STEP_PIN) && !PIN_EXISTS(Z4_CS) #define I_E_INDEX INCREMENT(Z4_E_INDEX) #else #define I_E_INDEX Z4_E_INDEX @@ -1150,7 +1150,7 @@ #endif // I auto-assignment will use up an E stepper, but not if it's chained -#if HAS_I_AXIS && !defined(I_STEP_PIN) && !PIN_EXISTS(I_CS_PIN) +#if HAS_I_AXIS && !defined(I_STEP_PIN) && !PIN_EXISTS(I_CS) #define J_E_INDEX INCREMENT(I_E_INDEX) #else #define J_E_INDEX I_E_INDEX @@ -1235,7 +1235,7 @@ #endif // J auto-assignment will use up an E stepper, but not if it's chained -#if HAS_J_AXIS && !defined(J_STEP_PIN) && !PIN_EXISTS(J_CS_PIN) +#if HAS_J_AXIS && !defined(J_STEP_PIN) && !PIN_EXISTS(J_CS) #define K_E_INDEX INCREMENT(J_E_INDEX) #else #define K_E_INDEX J_E_INDEX @@ -1320,7 +1320,7 @@ #endif // K auto-assignment will use up an E stepper, but not if it's chained -#if HAS_K_AXIS && !defined(K_STEP_PIN) && !PIN_EXISTS(K_CS_PIN) +#if HAS_K_AXIS && !defined(K_STEP_PIN) && !PIN_EXISTS(K_CS) #define U_E_INDEX INCREMENT(K_E_INDEX) #else #define U_E_INDEX K_E_INDEX @@ -1405,7 +1405,7 @@ #endif // U auto-assignment will use up an E stepper, but not if it's chained -#if HAS_U_AXIS && !defined(U_STEP_PIN) && !PIN_EXISTS(U_CS_PIN) +#if HAS_U_AXIS && !defined(U_STEP_PIN) && !PIN_EXISTS(U_CS) #define V_E_INDEX INCREMENT(U_E_INDEX) #else #define V_E_INDEX U_E_INDEX @@ -1490,7 +1490,7 @@ #endif // V auto-assignment will use up an E stepper, but not if it's chained -#if HAS_V_AXIS && !defined(V_STEP_PIN) && !PIN_EXISTS(V_CS_PIN) +#if HAS_V_AXIS && !defined(V_STEP_PIN) && !PIN_EXISTS(V_CS) #define W_E_INDEX INCREMENT(V_E_INDEX) #else #define W_E_INDEX V_E_INDEX