Skip to content

Commit

Permalink
fix(bacnet): replace the dummy tag number so deep equals doesn't crap…
Browse files Browse the repository at this point in the history
… out
  • Loading branch information
sruehl committed Feb 15, 2023
1 parent 5ce69b5 commit 488b457
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Expand Up @@ -171,7 +171,7 @@ public int getLengthInBits() {
new DataReaderComplexDefault<>(
() ->
BACnetSegmentationTagged.staticParse(
readBuffer, (short) (0), (TagClass) (TagClass.APPLICATION_TAGS)),
readBuffer, (short) (9), (TagClass) (TagClass.APPLICATION_TAGS)),
readBuffer));

BACnetVendorIdTagged vendorId =
Expand Down
Expand Up @@ -946,7 +946,7 @@
['I_AM' *IAm
[simple BACnetApplicationTagObjectIdentifier deviceIdentifier ]
[simple BACnetApplicationTagUnsignedInteger maximumApduLengthAcceptedLength ]
[simple BACnetSegmentationTagged('0', 'TagClass.APPLICATION_TAGS') segmentationSupported ]
[simple BACnetSegmentationTagged('9', 'TagClass.APPLICATION_TAGS') segmentationSupported ]
[simple BACnetVendorIdTagged('2', 'TagClass.APPLICATION_TAGS') vendorId ]
]
['I_HAVE' *IHave
Expand Down

0 comments on commit 488b457

Please sign in to comment.