PyUSB 1.0:NotImplementedError:此平台上不支持或未实现操作

时间:2015-08-12 08:49:11

标签: python-2.7 pyusb

我刚刚开始使用pyusb,基本上我正在使用示例代码here

我正在使用Windows7 64位,并从https://walac.github.io/pyusb/下载了zip版本。后端是libusb-1.0.19,从http://libusb.info/下载了Windows二进制文件。

我的所有代码都是:

dev = usb.core.find(idVendor=3544, idProduct=9736)
if dev is None:
    sys.stdout.write("No device found")
    return;
print "deviceClass = " + str(dev.bDeviceClass);
for cfg in dev:
    sys.stdout.write("configuration: " + str(cfg.bConfigurationValue) + '\n')
    for intf in cfg:
        sys.stdout.write('\tInterface: ' + \
                             str(intf.bInterfaceNumber) + \
                             ',' + \
                             str(intf.bAlternateSetting) + \
                             '\n')
        for ep in intf:
            sys.stdout.write('\t\tEndpoint: ' + \
                                  str(ep.bEndpointAddress) + \
                                  ',' + \
                                  str(ep.bmAttributes) + \
                                  '\n')

dev.set_configuration()

在结尾处,我得到了

File "test.py", line 44, in find_mine
    dev.set_configuration()
File "c:\Python27\lib\site-packages\usb\core.py", line 842, in set_configuration
    self._ctx.managed_set_configuration(self, configuration)
File "c:\Python27\lib\site-packages\usb\core.py", line 128, in managed_set_configuration
    self.managed_open()
File "c:\Python27\lib\site-packages\usb\core.py", line 106, in managed_open
    self.handle = self.backend.open_device(self.dev)
File "c:\Python27\lib\site-packages\usb\backend\libusb1.py", line 778, in open_device
    return _DeviceHandle(dev)
File "c:\Python27\lib\site-packages\usb\backend\libusb1.py", line 640, in __init__
    _check(_lib.libusb_open(self.devid, byref(self.handle)))
File "c:\Python27\lib\site-packages\usb\backend\libusb1.py", line 590, in _check
    raise NotImplementedError(_strerror(ret))
NotImplementedError: Operation not supported or unimplemented on this platform

我安装了多个USB设备,但只有在尝试set_configuration我的USB闪存盘时才会看到此问题...

这是因为我无法使用pyusb访问闪存驱动器吗?或者有什么我想念的......

2 个答案:

答案 0 :(得分:2)

这个问题是关于在W7 / 64位上使用正确的驱动程序。 我尝试连接并使用Microchip自编程卡。不幸的是,Microchip提供的驱动程序不符合libusb库,我也犯了同样的错误。

阅读:How to use libusb on Windows

然后: - 连接Microchip卡时执行ZADIG安装 - 然后从ZADIG弹出窗口“List all devices”允许我检测并选择我的设备“CDC RS-232 Emulation Demo”ID = 04d8:000a - 然后可能有多个驱动程序:我安装了WINUSB(微软)

现在设备枚举的第一阶段工作正常。

答案 1 :(得分:1)

这也发生在我身上,问题是该设备被其他软件或驱动程序使用。