Tue, 09 Nov 2021 19:36:06 +0100
Merged with changes done on my Chromebook.
--- a/eric7/MicroPython/MicroPythonDevices.py Tue Nov 09 19:34:26 2021 +0100 +++ b/eric7/MicroPython/MicroPythonDevices.py Tue Nov 09 19:36:06 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())