mirror of
https://github.com/thelsing/knx.git
synced 2025-01-21 00:05:43 +01:00
- if go handler writes to same go, value is not sent to bus anymore Co-authored-by: Waldemar Porscha <waldemar.porscha@sap.com>
This commit is contained in:
parent
29702f69c3
commit
4b8b951be8
@ -128,15 +128,19 @@ void BauSystemBDevice::updateGroupObject(GroupObject & go, uint8_t * data, uint8
|
||||
|
||||
if (go.commFlag() != WriteRequest)
|
||||
{
|
||||
go.commFlag(Updated);
|
||||
#ifdef SMALL_GROUPOBJECT
|
||||
GroupObject::processClassCallback(go);
|
||||
GroupObject::processClassCallback(go);
|
||||
#else
|
||||
GroupObjectUpdatedHandler handler = go.callback();
|
||||
if (handler)
|
||||
handler(go);
|
||||
#endif
|
||||
}
|
||||
go.commFlag(Updated);
|
||||
else
|
||||
{
|
||||
go.commFlag(Updated);
|
||||
}
|
||||
}
|
||||
|
||||
bool BauSystemBDevice::configured()
|
||||
|
Loading…
Reference in New Issue
Block a user