mirror of
https://github.com/thelsing/knx.git
synced 2025-08-17 13:47:28 +02:00
FIX-Works now also if SMALL_GROUPOBJECT is not set
This commit is contained in:
parent
f7e8fec2ff
commit
a56fde7528
@ -71,7 +71,15 @@ void BauSystemBDevice::sendNextGroupTelegram()
|
|||||||
|
|
||||||
#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