mirror of
https://github.com/thelsing/knx.git
synced 2025-08-17 13:47:28 +02:00
Update bau_systemB.cpp
Bugfix, WriteRequest of last Object in Object Table was not processed
This commit is contained in:
parent
643909a7e3
commit
3dea57022b
@ -40,7 +40,7 @@ void BauSystemB::sendNextGroupTelegram()
|
||||
GroupObjectTableObject& table = _groupObjTable;
|
||||
uint16_t objCount = table.entryCount();
|
||||
|
||||
for (uint16_t asap = startIdx; asap < objCount; asap++)
|
||||
for (uint16_t asap = startIdx; asap <= objCount; asap++)
|
||||
{
|
||||
GroupObject& go = table.get(asap);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user