🔧 Fix LIN_ADVANCE + Extra Axes sanity check (#27110)

This commit is contained in:
Vovodroid
2024-10-08 07:32:09 +03:00
committed by GitHub
parent a66b22c4f1
commit cebed347f5
+2 -2
View File
@@ -1073,8 +1073,8 @@ static_assert(NUM_SERVOS <= NUM_SERVO_PLUGS, "NUM_SERVOS (or some servo index) i
#error "DIRECT_STEPPING does not currently support more than 3 axes (i.e., XYZ)."
#elif ENABLED(FOAMCUTTER_XYUV) && !(HAS_I_AXIS && HAS_J_AXIS)
#error "FOAMCUTTER_XYUV requires I and J steppers to be enabled."
#elif ENABLED(LINEAR_ADVANCE) && HAS_I_AXIS
#error "LINEAR_ADVANCE does not currently support the inclusion of an I axis."
#elif ENABLED(LIN_ADVANCE) && HAS_I_AXIS
#error "LIN_ADVANCE does not currently support the inclusion of an I axis."
#endif
/**