Skip to content

Commit

Permalink
Merge branch 'master' into 20240430_nw-builder_3.8.3
Browse files Browse the repository at this point in the history
  • Loading branch information
nerdCopter authored Jun 11, 2024
2 parents 0e3f8cd + 5175d8f commit 01f94c5
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
4 changes: 4 additions & 0 deletions manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,10 @@
{
"vendorId": 10473,
"productId": 393
},
{
"vendorId": 12619,
"productId": 262
}
]
},
Expand Down
3 changes: 2 additions & 1 deletion src/js/port_handler.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 () {
Expand Down
2 changes: 1 addition & 1 deletion src/js/tabs/cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -369,7 +369,7 @@ function writeLineToOutput(text) {
return; // suppress output if in building state
}

if (text.startsWith("###ERROR: ")) {
if (text.startsWith("###ERROR")) {
writeToOutput('<span class="error_message">' + text + '</span><br>');
} else {
writeToOutput(text + "<br>");
Expand Down

0 comments on commit 01f94c5

Please sign in to comment.