Skip to content

Commit

Permalink
Add Pico to picoPortFilters (#696)
Browse files Browse the repository at this point in the history
  • Loading branch information
pzich authored Dec 17, 2024
1 parent c75d14d commit 7ec594b
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions src/util/pico-port-filter.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
export const picoPortFilters: SerialPortRequestOptions["filters"] = [
{
usbProductId: 61450,
usbVendorId: 11914,
// Pico (RP2040)
usbProductId: 0x000a,
usbVendorId: 0x2e8a,
},
{
// Pico W (RP2040)
usbProductId: 0xf00a,
usbVendorId: 0x2e8a,
},
];

0 comments on commit 7ec594b

Please sign in to comment.