1

我正在使用 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 中它的实际使用方式。

有关如何进行此映射的任何帮助?

谢谢 !!!

4

1 回答 1

1

您在 dev.ctrl_transfer 命令中的参数看起来错误。

事实上,dev.ctrl_transfer 将设置几个参数,如消息的方向、长度和控制消息的内容(在此链接中很好地解释了一切:http://www.beyondlogic.org/usbnutshell/usb6。 shtml#SetupPacket )

因此,您必须设置设备功能中的参数以及您想要做什么。例如在我的代码和我的设备中,我有这个命令:

dev.ctrl_transfer(0x21, 0x09, 0x200, 0x00, command)
于 2016-02-29T10:23:19.690 回答