Browse Source

Fix SPI_ENDSTOPS compile error (#14906)

pull/1/head
Giuliano Zaro 5 years ago
committed by Scott Lahteine
parent
commit
a7f1021265
  1. 7
      Marlin/src/Marlin.cpp

7
Marlin/src/Marlin.cpp

@ -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