Fix SPI_ENDSTOPS compile error (#14906)

2.0.x
Giuliano Zaro 5 years ago committed by Scott Lahteine
parent 2971b48a12
commit a7f1021265

@ -661,9 +661,14 @@ void idle(
) {
#if ENABLED(SPI_ENDSTOPS)
if (endstops.tmc_spi_homing.any && ELAPSED(millis(), sg_guard_period))
if (endstops.tmc_spi_homing.any
#if ENABLED(IMPROVE_HOMING_RELIABILITY)
&& ELAPSED(millis(), sg_guard_period)
#endif
) {
for (uint8_t i = 4; i--;) // Read SGT 4 times per idle loop
if (endstops.tmc_spi_homing_check()) break;
}
#endif
#if ENABLED(MAX7219_DEBUG)

Loading…
Cancel
Save