You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When negative-ack is FALSE, which is the overwhelmingly frequent case, it is fine to output nothing, as code currently does. But when negative-ack is TRUE, representing that would be usefully diagnostic.
BACnet-SegmentACK-PDU ::= SEQUENCE {
pdu-type Unsigned (0..15), high 4 bits, thus 0x40, 41, 42 or 43 for this PDU type
reserved Unsigned (0..3), -- shall be set to zero
negative-ack BOOLEAN, -- bit1
server BOOLEAN, -- bit0
original-invoke-id Unsigned (0..255),
sequence-number Unsigned (0..255),
reserved Unsigned (0..1), -- highest bit shall be zero
actual-window-size Unsigned (1..127)
The text was updated successfully, but these errors were encountered:
When negative-ack is FALSE, which is the overwhelmingly frequent case, it is fine to output nothing, as code currently does. But when negative-ack is TRUE, representing that would be usefully diagnostic.
The text was updated successfully, but these errors were encountered: