Skip to content

Commit 40e1292

Browse files
committed
🩹 Extra axis min home with Delta Sensorless Probe
1 parent 7d7096c commit 40e1292

File tree

1 file changed

+3
-9
lines changed

1 file changed

+3
-9
lines changed

Marlin/src/module/endstops.cpp

+3-9
Original file line numberDiff line numberDiff line change
@@ -691,15 +691,9 @@ void __O2 Endstops::report_states() {
691691

692692
} // Endstops::report_states
693693

694-
#if HAS_DELTA_SENSORLESS_PROBING
695-
#define __ENDSTOP(AXIS, ...) AXIS ##_MAX
696-
#define _ENDSTOP_PIN(AXIS, ...) AXIS ##_MAX_PIN
697-
#define _ENDSTOP_INVERTING(AXIS, ...) AXIS ##_MAX_ENDSTOP_INVERTING
698-
#else
699-
#define __ENDSTOP(AXIS, MINMAX) AXIS ##_## MINMAX
700-
#define _ENDSTOP_PIN(AXIS, MINMAX) AXIS ##_## MINMAX ##_PIN
701-
#define _ENDSTOP_INVERTING(AXIS, MINMAX) AXIS ##_## MINMAX ##_ENDSTOP_INVERTING
702-
#endif
694+
#define __ENDSTOP(AXIS, MINMAX) AXIS ##_## MINMAX
695+
#define _ENDSTOP_PIN(AXIS, MINMAX) AXIS ##_## MINMAX ##_PIN
696+
#define _ENDSTOP_INVERTING(AXIS, MINMAX) AXIS ##_## MINMAX ##_ENDSTOP_INVERTING
703697
#define _ENDSTOP(AXIS, MINMAX) __ENDSTOP(AXIS, MINMAX)
704698

705699
/**

0 commit comments

Comments
 (0)