1
0
mirror of https://github.com/MarlinFirmware/Marlin.git synced 2024-11-26 13:25:54 +00:00

🔧 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
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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
/**