Skip to content

Commit 22e6365

Browse files
ellenspthinkyhead
authored andcommitted
🔧 Fix Sensorless Probe sanity-check err (#25417)
1 parent abd710b commit 22e6365

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
@@ -1879,9 +1879,9 @@ static_assert(X_MAX_LENGTH >= X_BED_SIZE, "Movement bounds (X_MIN_POS, X_MAX_POS
18791879
*/
18801880
#if ENABLED(SENSORLESS_PROBING)
18811881
#if ENABLED(DELTA) && !(X_SENSORLESS && Y_SENSORLESS && Z_SENSORLESS)
1882-
#error "SENSORLESS_PROBING requires TMC2130/2160/2209/5130/5160 drivers on X, Y, and Z."
1882+
#error "SENSORLESS_PROBING requires TMC2130/2160/2209/5130/5160 drivers on X, Y, and Z and {X|Y|Z}_STALL_SENSITIVITY."
18831883
#elif !Z_SENSORLESS
1884-
#error "SENSORLESS_PROBING requires a TMC2130/2160/2209/5130/5160 driver on Z."
1884+
#error "SENSORLESS_PROBING requires a TMC2130/2160/2209/5130/5160 driver on Z and Z_STALL_SENSITIVITY."
18851885
#endif
18861886
#elif ENABLED(Z_MIN_PROBE_USES_Z_MIN_ENDSTOP_PIN)
18871887
#if DISABLED(USE_ZMIN_PLUG)

0 commit comments

Comments
 (0)