We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 900ba88 commit 08b68b9Copy full SHA for 08b68b9
main.cpp
@@ -8762,6 +8762,11 @@ int main(int argc, char **argv) {
8762
// again is to assume it has the same serial number.
8763
settings.address = -1;
8764
settings.bus = -1;
8765
+ // also skip vid/pid filtering, as that will typically change in BOOTSEL mode
8766
+ settings.pid = -1;
8767
+ // still filter for rpi vid/pid if we don't have a serial number, as that is an RP2040 running a no_flash binary, so will
8768
+ // have a standard rpi vid/pid in BOOTSEL mode
8769
+ settings.vid = settings.ser.empty() ? -1 : 0; // 0 means skip vid/pid filtering entirely, -1 means filter for rpi vid/pid
8770
continue;
8771
}
8772
0 commit comments