Skip to content

Commit cebed34

Browse files
authored
🔧 Fix LIN_ADVANCE + Extra Axes sanity check (MarlinFirmware#27110)
1 parent a66b22c commit cebed34

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Marlin/src/inc/SanityCheck.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1073,8 +1073,8 @@ static_assert(NUM_SERVOS <= NUM_SERVO_PLUGS, "NUM_SERVOS (or some servo index) i
10731073
#error "DIRECT_STEPPING does not currently support more than 3 axes (i.e., XYZ)."
10741074
#elif ENABLED(FOAMCUTTER_XYUV) && !(HAS_I_AXIS && HAS_J_AXIS)
10751075
#error "FOAMCUTTER_XYUV requires I and J steppers to be enabled."
1076-
#elif ENABLED(LINEAR_ADVANCE) && HAS_I_AXIS
1077-
#error "LINEAR_ADVANCE does not currently support the inclusion of an I axis."
1076+
#elif ENABLED(LIN_ADVANCE) && HAS_I_AXIS
1077+
#error "LIN_ADVANCE does not currently support the inclusion of an I axis."
10781078
#endif
10791079

10801080
/**

0 commit comments

Comments
 (0)