Skip to content

Commit

Permalink
🔧 Fix LIN_ADVANCE + Extra Axes sanity check (#27110)
Browse files Browse the repository at this point in the history
  • Loading branch information
vovodroid authored Oct 8, 2024
1 parent a66b22c commit cebed34
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Marlin/src/inc/SanityCheck.h
Original file line number Diff line number Diff line change
Expand Up @@ -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

/**
Expand Down

0 comments on commit cebed34

Please sign in to comment.