我正在使用来自Mac OSX 10.10.5的python hidapi访问USB HID设备:
import hid
import time
hidraw = hid.device(0x1a67, 0x0004)
hidraw.open(0x1a67, 0x0004)
# Rpt, GnS, Tgt, Size, Index LSB, Index MSB, Data
# Blink 4 pulses
hidraw.send_feature_report([0x00, 0x00, 0x00,0x01, 0x01, 0x00, 0x03])
hidraw.get_feature_report(33,33)
time.sleep(3)
HID功能报告可以正常运行而不会出现问题。 但是,我试图将此代码移植到PyUSB并尝试执行相同的操作(在RaspberryPi上)
import usb.core
import usb.util
# find our device
dev = usb.core.find(idVendor=0xfffe, idProduct=0x0004)
# was it found?
if dev is None:
raise ValueError('Device not found')
# get an endpoint instance
for interface in dev.get_active_configuration():
if dev.is_kernel_driver_active(interface.bInterfaceNumber):
# Detach kernel drivers and claim through libusb
dev.detach_kernel_driver(interface.bInterfaceNumber)
usb.util.claim_interface(dev, interface.bInterfaceNumber)
# set the active configuration. With no arguments, the first
# configuration will be the active one
dev.set_configuration()
ret = dev.ctrl_transfer(0x00, 0x00, 0x01, 0x01, [0x00, 0x03])
但是在使用root权限执行时我得到了一个Broken Pipe。目前还不是很清楚如何将我在Hidapi的send_feature_report中使用的参数映射到PyUSB中ctrl_transfer的实际使用方式。
有关如何进行此映射的任何帮助?
谢谢!!!
答案 0 :(得分:1)
dev.ctrl_transfer命令中的参数看起来不对。
事实是dev.ctrl_transfer将设置几个参数,如消息的方向,长度和控制消息的内容 (在这个链接中一切都很好解释:http://www.beyondlogic.org/usbnutshell/usb6.shtml#SetupPacket)
因此,您必须根据设备的功能和要执行的操作设置参数。例如,在我的代码和我的设备中,我有这个命令:
dev.ctrl_transfer(0x21, 0x09, 0x200, 0x00, command)