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

ADD APM32 MCU USB_DFU #2075

Merged
merged 2 commits into from
May 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions js/port_handler.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ const ConnectionSerial = require('./connection/connectionSerial');

var usbDevices = [
{ 'vendorId': 1155, 'productId': 57105},
{ 'vendorId': 11836, 'productId': 57105}
{ 'vendorId': 11836, 'productId': 57105},
{ 'vendorId': 12619, 'productId': 262}, // APM32 DFU Bootloader
];


Expand Down Expand Up @@ -297,4 +298,4 @@ PortHandler.flush_callbacks = function () {
return killed;
};

module.exports = { usbDevices, PortHandler };
module.exports = { usbDevices, PortHandler };
3 changes: 2 additions & 1 deletion manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,8 @@
"alwaysOnTopWindows",
{"usbDevices": [
{"vendorId": 1155, "productId": 57105},
{"vendorId": 11836, "productId": 57105}
{"vendorId": 11836, "productId": 57105},
{'vendorId': 12619, 'productId': 262} // APM32 DFU Bootloader
]}
],

Expand Down
Loading