1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-01 21:54:55 -04:00

Fixed re-enumeration of static devices

This commit is contained in:
f4exb
2017-05-18 22:54:24 +02:00
parent 9d9aa64439
commit c434b2e24e
2 changed files with 18 additions and 2 deletions
+12
View File
@@ -127,6 +127,12 @@ void PluginManager::updateSampleSourceDevices()
ssd[j].id,
ssd[j].serial,
ssd[j].sequence));
qDebug("PluginManager::updateSampleSourceDevices: %s %s %s %s %d",
qPrintable(ssd[j].displayedName),
qPrintable(ssd[j].hardwareId),
qPrintable(ssd[j].id),
qPrintable(ssd[j].serial),
ssd[j].sequence);
}
}
}
@@ -147,6 +153,12 @@ void PluginManager::updateSampleSinkDevices()
ssd[j].id,
ssd[j].serial,
ssd[j].sequence));
qDebug("PluginManager::updateSampleSinkDevices: %s %s %s %s %d",
qPrintable(ssd[j].displayedName),
qPrintable(ssd[j].hardwareId),
qPrintable(ssd[j].id),
qPrintable(ssd[j].serial),
ssd[j].sequence);
}
}
}