From f9d324cd38e66a3380577c5e37e940cf0ddf8ab2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gu=C3=B0ni=20M=C3=A1r=20Gilbert?= Date: Sat, 17 Dec 2022 13:31:27 +0000 Subject: [PATCH] If Finda is not pressed, don't report Unload Manually error --- src/modules/finda.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/modules/finda.cpp b/src/modules/finda.cpp index 74f99af..e50e2cd 100644 --- a/src/modules/finda.cpp +++ b/src/modules/finda.cpp @@ -37,8 +37,7 @@ bool FINDA::CheckFINDAvsEEPROM() { // FINDA is not pressed but we have a record in the EEPROM. // It has been decided, that we shall clear such a record from EEPROM automagically // and presume there is no filament at all (requires working FINDA) - //mg::globals.SetFilamentLoaded(config::toolCount, mg::AtPulley); - ret = false; + mg::globals.SetFilamentLoaded(config::toolCount, mg::AtPulley); } return ret; }