Skip to content

Commit 735cd9a

Browse files
committed
🩹 Fix TH3D EZ V2 sensorless homing
1 parent 555b080 commit 735cd9a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Marlin/src/pins/stm32f4/pins_TH3D_EZBOARD_V2.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,13 +63,13 @@
6363
//
6464
#if ANY(SENSORLESS_HOMING, SENSORLESS_PROBING)
6565
// Sensorless homing pins
66-
#if ENABLED(X_AXIS_SENSORLESS_HOMING)
66+
#if AXIS_HAS_STALLGUARD(X) && defined(X_STALL_SENSITIVITY)
6767
#define X_STOP_PIN PB4
6868
#else
6969
#define X_STOP_PIN PC1
7070
#endif
7171

72-
#if ENABLED(Y_AXIS_SENSORLESS_HOMING)
72+
#if AXIS_HAS_STALLGUARD(Y) && defined(Y_STALL_SENSITIVITY)
7373
#define Y_STOP_PIN PB9
7474
#else
7575
#define Y_STOP_PIN PC2

0 commit comments

Comments
 (0)