Recreated device sync, part I.

This commit is contained in:
2025-12-28 14:42:12 +01:00
parent a0bedf254d
commit 94323e7409
5 changed files with 35 additions and 34 deletions

View File

@@ -83,11 +83,16 @@ QTableView* BCDevicePanel::getValueView()
}
const BCValueList& BCDevicePanel::getValueList()
{
return _valueModel.getValueList();
}
void BCDevicePanel::onValueListReady( BCDevice::ID deviceID, BCValueList valueList )
{
qDebug() << " --- onValueListReady: " << getHeaderText() <<" : " << deviceID << ": " << valueList.size();
if(_devideID == deviceID)
_valueModel.setValueList( valueList );
_valueModel.takeValueList( valueList );
}
/*