0
0
Fork 0
mirror of https://github.com/MarlinFirmware/Marlin.git synced 2025-07-07 22:28:12 +00:00

Fix insane mmu2 timeout ()

* Fix insane mmu2 timeout

Fix insane timeout value. Now match original Prusa firmware.

* Update mmu2.cpp

Co-authored-by: Luu Lac <45380455+shitcreek@users.noreply.github.com>
This commit is contained in:
Giuliano Zaro 2021-05-09 22:58:36 +02:00 committed by GitHub
parent b12d0d06eb
commit fff5e9ba4a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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