diff -r f05818ae6431 -r 49d93d0069af eric7/MicroPython/MicroPythonDevices.py --- a/eric7/MicroPython/MicroPythonDevices.py Wed Nov 03 20:02:41 2021 +0100 +++ b/eric7/MicroPython/MicroPythonDevices.py Sat Nov 06 16:27:39 2021 +0100 @@ -181,6 +181,7 @@ IgnoredBoards = ( (0x8086, 0x9c3d), + (0x8086, None), ) @@ -264,7 +265,10 @@ supported = True if not supported: if vid and pid: - if (vid, pid) not in IgnoredBoards: + if ( + (vid, pid) not in IgnoredBoards and + (vid, None) not in IgnoredBoards + ): unknownDevices.append((vid, pid, port.description())) logging.debug("Unknown device: (0x%04x:0x%04x %s)", vid, pid, port.description())