FIX-Works now also if SMALL_GROUPOBJECT is not set

This commit is contained in:
Waldemar Porscha 2022-04-02 16:35:15 +02:00
parent f7e8fec2ff
commit a56fde7528

View File

@ -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())
{ {