Compare commits

..

2 Commits

Author SHA1 Message Date
vits71 04d218c4fb
Merge 739ff4d637 into 1ba3eded09 2025-03-17 10:23:51 -04:00
Kyle Schwarz 1ba3eded09 Device: Gracefully handle old firmware without ComponentVersions 2025-03-14 15:38:34 -04:00
1 changed files with 1 additions and 1 deletions

View File

@ -362,7 +362,7 @@ APIEvent::Type Device::attemptToBeginCommunication() {
if(auto compVersions = com->getComponentVersionsSync())
componentVersions = std::move(*compVersions);
else
return getCommunicationNotEstablishedError();
report(APIEvent::Type::NotSupported, APIEvent::Severity::EventWarning); // outdated firmware
}
return APIEvent::Type::NoErrorFound;