From 9fcff081f69f19720d306befd4a22bca7e40a0b9 Mon Sep 17 00:00:00 2001 From: Pierre-Luc Date: Fri, 14 Mar 2025 15:40:53 -0400 Subject: [PATCH] Fix for device with older firmware It's possible the device is on older firmware so don't return false here --- device/device.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/device/device.cpp b/device/device.cpp index 10c5404..c70d92e 100644 --- a/device/device.cpp +++ b/device/device.cpp @@ -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;