mirror of
https://github.com/thelsing/knx.git
synced 2025-09-18 17:52:44 +02:00
FIX issue introduced with #194
- if go handler writes to same go, value is not sent to bus anymore
This commit is contained in:
parent
29702f69c3
commit
cae65d0f48
@ -128,6 +128,7 @@ void BauSystemBDevice::updateGroupObject(GroupObject & go, uint8_t * data, uint8
|
||||
|
||||
if (go.commFlag() != WriteRequest)
|
||||
{
|
||||
go.commFlag(Updated);
|
||||
#ifdef SMALL_GROUPOBJECT
|
||||
GroupObject::processClassCallback(go);
|
||||
#else
|
||||
@ -136,7 +137,10 @@ void BauSystemBDevice::updateGroupObject(GroupObject & go, uint8_t * data, uint8
|
||||
handler(go);
|
||||
#endif
|
||||
}
|
||||
else
|
||||
{
|
||||
go.commFlag(Updated);
|
||||
}
|
||||
}
|
||||
|
||||
bool BauSystemBDevice::configured()
|
||||
|
Loading…
Reference in New Issue
Block a user