Update bau_systemB.cpp

Bugfix, WriteRequest of last Object in Object Table was not processed
This commit is contained in:
Bernator 2018-11-04 10:05:08 +01:00 committed by GitHub
parent 643909a7e3
commit 3dea57022b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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);