diff --git a/manifest.json b/manifest.json index e68689775..fbcb5b5b1 100644 --- a/manifest.json +++ b/manifest.json @@ -37,6 +37,10 @@ { "vendorId": 10473, "productId": 393 + }, + { + "vendorId": 12619, + "productId": 262 } ] }, diff --git a/src/js/port_handler.js b/src/js/port_handler.js index 98bd65f91..cc8182ef6 100644 --- a/src/js/port_handler.js +++ b/src/js/port_handler.js @@ -4,7 +4,8 @@ const TIMEOUT_CHECK = 500; // With 250 it seems that it produces a memory leak a var usbDevices = { filters: [ {'vendorId': 1155, 'productId': 57105}, - {'vendorId': 10473, 'productId': 393} + {'vendorId': 10473, 'productId': 393}, + {'vendorId': 12619, 'productId': 262} // APM32 DFU Bootloader ] }; var PortHandler = new function () {