Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Hardware: Add support for JFB110 #11510

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/Comms/USBBoardInfo.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@

{ "vendorID": 11694, "productID": 0, "boardClass": "Pixhawk", "name": "CubePilot" },

{ "vendorID": 2702, "productID": 110, "boardClass": "Pixhawk", "name": "JFB JFB110" },

{ "vendorID": 13735, "productID": 1, "boardClass": "Pixhawk", "name": "ThePeach FCC-K1" },
{ "vendorID": 13735, "productID": 2, "boardClass": "Pixhawk", "name": "ThePeach FCC-R1" },

Expand Down Expand Up @@ -86,6 +88,8 @@
{ "regExp": "^PX4 BL ASC v1.x$", "boardClass": "Pixhawk" },
{ "regExp": "^PX4 FMU", "boardClass": "Pixhawk" },
{ "regExp": "^PX4 Crazyflie v2.0", "boardClass": "Pixhawk" },
{ "regExp": "^JFB JFB110$", "boardClass": "Pixhawk" },
{ "regExp": "^JFB BL JFB110$", "boardClass": "Pixhawk" },
{ "regExp": "^Crazyflie BL", "boardClass": "Pixhawk" },
{ "regExp": "^PX4 OmnibusF4SD", "boardClass": "Pixhawk" },
{ "regExp": "^fmuv[2345]$", "boardClass": "Pixhawk" },
Expand Down
1 change: 1 addition & 0 deletions src/VehicleSetup/FirmwareUpgradeController.cc
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,7 @@ static QMap<int, QString> px4_board_name_map {
{1048, "holybro_kakuteh7_default"},
{1053, "holybro_kakuteh7v2_default"},
{1054, "holybro_kakuteh7mini_default"},
{1110, "jfb_jfb110_default"},
};

uint qHash(const FirmwareUpgradeController::FirmwareIdentifier& firmwareId)
Expand Down