mirror of
https://github.com/thelsing/knx.git
synced 2025-08-13 13:46:20 +02:00
FIX-Works now also if SMALL_GROUPOBJECT is not set
This commit is contained in:
parent
f7e8fec2ff
commit
a56fde7528
@ -70,8 +70,16 @@ void BauSystemBDevice::sendNextGroupTelegram()
|
|||||||
continue;
|
continue;
|
||||||
|
|
||||||
#ifdef INTERNAL_GROUPOBJECT
|
#ifdef INTERNAL_GROUPOBJECT
|
||||||
if (flag == WriteRequest)
|
if (flag == WriteRequest)
|
||||||
|
{
|
||||||
|
#ifdef SMALL_GROUPOBJECT
|
||||||
GroupObject::processClassCallback(go);
|
GroupObject::processClassCallback(go);
|
||||||
|
#else
|
||||||
|
GroupObjectUpdatedHandler handler = go.callback();
|
||||||
|
if (handler)
|
||||||
|
handler(go);
|
||||||
|
#endif
|
||||||
|
}
|
||||||
#endif
|
#endif
|
||||||
if (!go.communicationEnable())
|
if (!go.communicationEnable())
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user