You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
LOGD("Difference in names found for device at address ", deviceIdx, ". Found ", deviceName, " on ", hubName, ", but was expecting ", device->getName(), " on ", device->getHubName());
125
125
}
126
126
}
127
-
elseif (device->getDeviceType() == OnixDeviceType::HEARTBEAT || device->getDeviceType() == OnixDeviceType::MEMORYMONITOR) // NB: These are devices with no equivalent settings tab that still need to be created and added to the vector of devices
@@ -233,7 +235,7 @@ bool OnixSource::checkHubFirmwareCompatibility(std::shared_ptr<Onix1> context, d
233
235
{
234
236
if (hubId == ONIX_HUB_FMCHOST) // NB: Breakout Board
235
237
{
236
-
staticconstexprint RequiredMajorVersion = 1;
238
+
staticconstexprint RequiredMajorVersion = 2;
237
239
uint32_t firmwareVersion = 0;
238
240
if (!getHubFirmwareVersion(context, hubIndex, &firmwareVersion))
239
241
{
@@ -247,7 +249,11 @@ bool OnixSource::checkHubFirmwareCompatibility(std::shared_ptr<Onix1> context, d
247
249
248
250
if (majorVersion != RequiredMajorVersion)
249
251
{
250
-
Onix1::showWarningMessageBoxAsync("Invalid Firmware Version", "The breakout board major version is v" + std::to_string(majorVersion) + ", but this plugin is only compatible with v" + std::to_string(RequiredMajorVersion) + ". To use this plugin, upgrade to a version that supports the breakout board v" + std::to_string(majorVersion));
252
+
Onix1::showWarningMessageBoxAsync(
253
+
"Invalid Firmware Version",
254
+
"The breakout board firmware major version is v" + std::to_string(majorVersion) +
255
+
", but this plugin is only compatible with v" + std::to_string(RequiredMajorVersion) +
256
+
". To use this plugin, upgrade the firmware to a version that supports the breakout board v" + std::to_string(majorVersion));
0 commit comments