🐛 Fix excessive MMU2 timeout (#21855)
This commit is contained in:
parent
00722c3294
commit
789235b925
1 changed files with 1 additions and 1 deletions
|
@ -159,7 +159,7 @@ void MMU2::mmu_loop() {
|
|||
MMU2_COMMAND("S1"); // Read Version
|
||||
state = -2;
|
||||
}
|
||||
else if (millis() > 3000000) {
|
||||
else if (millis() > 30000) { // 30sec after reset disable MMU
|
||||
SERIAL_ECHOLNPGM("MMU not responding - DISABLED");
|
||||
state = 0;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue