-
Notifications
You must be signed in to change notification settings - Fork 3.9k
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
BoardInfo: Add FMUv5X #9764
BoardInfo: Add FMUv5X #9764
Conversation
@@ -54,6 +55,8 @@ | |||
{ "regExp": "^PX4 BL FMU v6U.x$", "boardClass": "Pixhawk" }, | |||
{ "regExp": "^PX4 FMU v6X.x$", "boardClass": "Pixhawk" }, | |||
{ "regExp": "^PX4 BL FMU v6X.x$", "boardClass": "Pixhawk" }, | |||
{ "regExp": "^PX4 FMU v5X.x$", "boardClass": "Pixhawk" }, | |||
{ "regExp": "^PX4 BL FMU v5X.x$", "boardClass": "Pixhawk" }, | |||
{ "regExp": "^PX4 FMU v5.x$", "boardClass": "Pixhawk" }, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@dagar not sure how is the regex working on the other end, but would the dot "." on this line need to be escaped to avoid the regex from catching an X or any other char other than the dot?
Vendor: Pixhawk? |
@LorenzMeier USB Vendor ID is set to 0x3185 |
@@ -13,6 +13,7 @@ | |||
{ "vendorID": 9900, "productID": 33, "boardClass": "Pixhawk", "name": "AUAV X2.1 FMU V2" }, | |||
{ "vendorID": 9900, "productID": 48, "boardClass": "Pixhawk", "name": "MindPX FMU V2" }, | |||
{ "vendorID": 9900, "productID": 50, "boardClass": "Pixhawk", "name": "PX4 FMU V5" }, | |||
{ "vendorID": 9900, "productID": 51, "boardClass": "Pixhawk", "name": "PX4 FMU V5X" }, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@mrpollo @LorenzMeier The bootloader that has been out for years use 12677
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks, I sent the following #9816
@LorenzMeier @dagar, what would be the proper
vendorID
for FMUv5X?