Skip to content

Commit

Permalink
core: ardupilot-manager: improve Pixhawk support
Browse files Browse the repository at this point in the history
Some Pixhawk boards use FMUv3
  • Loading branch information
ES-Alexander authored and Williangalvani committed Oct 26, 2023
1 parent 6188f52 commit 1f6586f
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ class SerialBoardIdentifier(BaseModel):
identifiers: List[SerialBoardIdentifier] = [
SerialBoardIdentifier(attribute=SerialAttr.product, id_value="Pixhawk1", platform=Platform.Pixhawk1),
SerialBoardIdentifier(attribute=SerialAttr.product, id_value="FMU v2.x", platform=Platform.Pixhawk1),
SerialBoardIdentifier(attribute=SerialAttr.product, id_value="FMU v3.x", platform=Platform.Pixhawk1),
SerialBoardIdentifier(attribute=SerialAttr.product, id_value="Pixhawk4", platform=Platform.Pixhawk4),
SerialBoardIdentifier(attribute=SerialAttr.product, id_value="FMU v5.x", platform=Platform.Pixhawk4),
SerialBoardIdentifier(attribute=SerialAttr.product, id_value="FMU v6X.x", platform=Platform.Pixhawk6X),
Expand Down

0 comments on commit 1f6586f

Please sign in to comment.