Skip to content

Commit ea554a0

Browse files
committed
🔧 More Quick Sensorless Homing warning
1 parent 08717d3 commit ea554a0

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

Marlin/src/inc/Warnings.cpp

+6-2
Original file line numberDiff line numberDiff line change
@@ -729,8 +729,12 @@
729729
#endif
730730
#endif
731731

732-
#if ENABLED(QUICK_HOME) && (X_SPI_SENSORLESS || Y_SPI_SENSORLESS)
733-
#warning "SPI_ENDSTOPS may be unreliable with QUICK_HOME. Adjust SENSORLESS_BACKOFF_MM for better results."
732+
#if ENABLED(QUICK_HOME)
733+
#if X_SPI_SENSORLESS || Y_SPI_SENSORLESS
734+
#warning "If SPI_ENDSTOPS are unreliable with QUICK_HOME try adjusting SENSORLESS_BACKOFF_MM, Travel Acceleration (M204 T), Homing Feedrate (M210 XY), or disable QUICK_HOME."
735+
#elif X_SENSORLESS || Y_SENSORLESS
736+
#warning "If SENSORLESS_HOMING is unreliable with QUICK_HOME try adjusting SENSORLESS_BACKOFF_MM, Travel Acceleration (M204 T), Homing Feedrate (M210 XY), or disable QUICK_HOME."
737+
#endif
734738
#endif
735739

736740
#if HIGHER_CURRENT_HOME_WARNING

0 commit comments

Comments
 (0)