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 7c55234 commit 61e3fddCopy full SHA for 61e3fdd
main.cpp
@@ -8702,6 +8702,11 @@ int main(int argc, char **argv) {
8702
// again is to assume it has the same serial number.
8703
settings.address = -1;
8704
settings.bus = -1;
8705
+ // also skip vid/pid filtering, as that will typically change in BOOTSEL mode
8706
+ settings.pid = -1;
8707
+ // 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
8708
+ // have a standard rpi vid/pid in BOOTSEL mode
8709
+ settings.vid = settings.ser.empty() ? -1 : 0; // 0 means skip vid/pid filtering entirely, -1 means filter for rpi vid/pid
8710
continue;
8711
}
8712
0 commit comments