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

@ -70,8 +70,16 @@ void BauSystemBDevice::sendNextGroupTelegram()
continue;
#ifdef INTERNAL_GROUPOBJECT
if (flag == WriteRequest)
if (flag == WriteRequest)
{
#ifdef SMALL_GROUPOBJECT
GroupObject::processClassCallback(go);
#else
GroupObjectUpdatedHandler handler = go.callback();
if (handler)
handler(go);
#endif
}
#endif
if (!go.communicationEnable())
{