Skip to content

Commit

Permalink
Tools: scripts: mavlink_parse: support development message set
Browse files Browse the repository at this point in the history
  • Loading branch information
ES-Alexander committed Jun 3, 2024
1 parent b33918d commit 199f475
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Tools/scripts/mavlink_parse.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from dataclasses import dataclass, astuple

from pymavlink.dialects.v20 import (
common, icarous, cubepilot, uAvionix, ardupilotmega
common, icarous, cubepilot, uAvionix, ardupilotmega, development
)

class MAVLinkDialect(StrEnum):
Expand All @@ -18,6 +18,7 @@ class MAVLinkDialect(StrEnum):
CUBEPILOT = 'cubepilot'
UAVIONIX = 'uAvionix'
ARDUPILOTMEGA = 'ardupilotmega'
DEVELOPMENT = 'development'
UNKNOWN = 'UNKNOWN'


Expand Down

0 comments on commit 199f475

Please sign in to comment.