multipleBlocks() in GXDLMS.py
Current code:
len_ += p.attributeDescriptor.size
Should be:
len_ += p.attributeDescriptor.available()
Reason:
For the second and following PDU blocks, attributeDescriptor has already been consumed in the first block.
At this point the buffer position is already at the end, so:
p.attributeDescriptor.available()
returns 0.
However:
p.attributeDescriptor.size
returns the full buffer size (9 bytes in this case), which incorrectly increases the calculated PDU length.
Because of this, for some boundary data sizes multipleBlocks() calculates an incorrect PDU size and the final block is generated with:
LastBlock = 0
instead of:
LastBlock = 1
This causes the receiver to wait for another block even though all data has already been transferred.
Hi, Thank you for pointing…
Hi,
Thank you for pointing this out. This is still being tested because it affects all communication. The new version should be released this week once all tests are complete.
Regards,
Mikko
Hi, Thank you for taking on…
Hi, Thank you for taking on this issue!
While you are testing this area before the release, I noticed another related boundary issue in GXDLMS.getLNPdu().
When calculating whether the remaining data fits in the current PDU:
totalLength = len_ + len(reply)
totalLength does not account for the byte count header added right after by _GXCommon.setObjectCount(len_, reply).
Because of this, at the exact boundary where len_ + len(reply) == p.settings.maxPduSize, totalLength > p.settings.maxPduSize evaluates to False. The data is not truncated, and setObjectCount() adds 1 extra byte, resulting in a PDU that exceeds maxPduSize by 1 byte (e.g. 101 bytes instead of 100) while LastBlock is set to 0.
Proposed fix for both issues in GXDLMS.py:
1. In multipleBlocks():
Current code:
len_ += p.attributeDescriptor.size
Should be:
len_ += p.attributeDescriptor.available()
2. In getLNPdu():
Current code:
totalLength = len_ + len(reply)
Should be:
totalLength = len_ + len(reply) + _GXCommon.getObjectCountSizeInBytes(len_)
Hope this helps