Browse Source

🐛 Fix excessive MMU2 timeout (#21855)

vanilla_fb_2.0.x
Giuliano Zaro 4 years ago
committed by Scott Lahteine
parent
commit
789235b925
  1. 2
      Marlin/src/feature/mmu/mmu2.cpp

2
Marlin/src/feature/mmu/mmu2.cpp

@ -159,7 +159,7 @@ void MMU2::mmu_loop() {
MMU2_COMMAND("S1"); // Read Version MMU2_COMMAND("S1"); // Read Version
state = -2; state = -2;
} }
else if (millis() > 3000000) { else if (millis() > 30000) { // 30sec after reset disable MMU
SERIAL_ECHOLNPGM("MMU not responding - DISABLED"); SERIAL_ECHOLNPGM("MMU not responding - DISABLED");
state = 0; state = 0;
} }

Loading…
Cancel
Save