7

我正在尝试制作一个脚本(在 linux 上),它可以打开或关闭鼠标中的灯。

这是我到目前为止的代码:

import usb.core
import usb.util
import sys
interface = 0
dev = usb.core.find(idVendor=0x1532, idProduct=0x0017)

def main():

        if dev is None:
            print "device not found"

        else:
        print "device found"
        if dev.is_kernel_driver_active(interface) is True:
            print "but we need to detach kernel driver"
            dev.detach_kernel_driver(interface)
            print "claiming device"
            usb.util.claim_interface(dev, interface)


            print "release claimed interface"
            usb.util.release_interface(dev, interface)
            print "now attaching the kernel driver again"
            dev.attach_kernel_driver(interface)
            print "all done"
return 0

if __name__ == '__main__':
    main()

这工作正常,但如果我尝试做一个:dev.set_configuration()

claim_interface(dev, interface)之后

脚本返回错误:usb.core.USBError: Resource busy

为什么我分离了它的内核驱动后它仍然很忙?

4

2 回答 2

6

不确定这是否会解决,但是否正确设置了鼠标的 udev 规则?我在朋友为我做的自定义设备上遇到了类似的问题,我通过添加如下规则来解决:

SUBSYSTEM !="usb_device", ACTION !="add", GOTO="device_rules_end"
SYSFS{idVendor} =="1532", SYSFS{idProduct} =="0017", SYMLINK+="mydevice"
MODE="0666", OWNER="<your-username-here>", GROUP="root"
LABEL="device_rules_end"

在我的/etc/udev/rules.d文件夹中。

编辑:在添加规则之前,请尝试使用sudo. 如果它会以这种方式工作,那几乎可以肯定是上述规则将修复的权限设置。

于 2011-11-22T00:46:16.227 回答
4

我也有这个问题。如果您首先“set_configuration”然后才声明接口,则您的代码运行良好。这也是这里建议的顺序:http: //libusb.sourceforge.net/api-1.0/caveats.html

于 2011-12-20T21:35:45.897 回答