Skip to content

Commit

Permalink
Payload component of struct is now correctly labeled within the Wires…
Browse files Browse the repository at this point in the history
…hark filter string.
  • Loading branch information
courtarro authored and peterbarker committed Nov 3, 2016
1 parent 3f054be commit cb92abb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion generator/mavgen_wlua.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ def generate_body_fields(outf):
f.compid = ProtoField.uint8("mavlink_proto.compid", "Component id", base.HEX)
f.msgid = ProtoField.uint8("mavlink_proto.msgid", "Message id", base.HEX)
f.crc = ProtoField.uint16("mavlink_proto.crc", "Message CRC", base.HEX)
f.payload = ProtoField.uint8("mavlink_proto.crc", "Payload", base.DEC, messageName)
f.payload = ProtoField.uint8("mavlink_proto.payload", "Payload", base.DEC, messageName)
f.rawheader = ProtoField.bytes("mavlink_proto.rawheader", "Unparsable header fragment")
f.rawpayload = ProtoField.bytes("mavlink_proto.rawpayload", "Unparsable payload")
Expand Down

0 comments on commit cb92abb

Please sign in to comment.