Fix for device with older firmware
It's possible the device is on older firmware so don't return false herepull/73/head
parent
89047447a6
commit
9fcff081f6
|
|
@ -362,7 +362,8 @@ APIEvent::Type Device::attemptToBeginCommunication() {
|
|||
if(auto compVersions = com->getComponentVersionsSync())
|
||||
componentVersions = std::move(*compVersions);
|
||||
else
|
||||
return getCommunicationNotEstablishedError();
|
||||
// It's possible the device is on older firmware so don't return false here
|
||||
report(APIEvent::Type::NoDeviceResponse, APIEvent::Severity::EventWarning);
|
||||
}
|
||||
|
||||
return APIEvent::Type::NoErrorFound;
|
||||
|
|
|
|||
Loading…
Reference in New Issue