pyusb 读取操作总是 return '1'

pyusb reading operation always return '1'

我正在尝试为我的代码使用 pyusb 创建 USB 驱动程序对象,并且 return 从读取操作总是 return '1',我在网上搜索了一会儿,我找不到任何解决方案,请尝试帮助我了解我做错了什么。

环境特性: 在 windows 10 上使用 python 3.7 和 pycharm。 安装 pyusb 模块后当然导入所有必需的包(usb.core、usb.util)。

我要构建的对象:

class UsbDev:
    def __init__(self, VID, PID):
        self.output_ep = None
        self.input_ep = None
        self.VID = VID
        self.PID = PID
        self.dev = usb.core.find(idVendor = self.VID, idProduct = self.PID)
        if self.dev is None:
            raise AttributeError('USB device is not connected...')

    def check_device(self, dev_name=None):
        if dev_name is None:
            raise ValueError("device name provided is None")
        if self.dev.product != dev_name:
            raise ValueError('Wrong type of product connected to host')

    def config_device(self):
        self.dev.set_configuration()
        cfg = self.dev.get_active_configuration()
        self.output_ep = usb.util.find_descriptor(cfg[(0, 0)], custom_match=lambda e:
            usb.util.endpoint_direction(e.bEndpointAddress) == usb.util.ENDPOINT_OUT)
        self.input_ep = usb.util.find_descriptor(cfg[(0, 0)], custom_match=lambda e:
            usb.util.endpoint_direction(e.bEndpointAddress) == usb.util.ENDPOINT_IN)

    def read_string(self):
        if self.input_ep is not None:
            ret_array = self.dev.read(self.input_ep.bEndpointAddress,
                                      self.input_ep.wMaxPacketSize)
            self.dev.clear_halt(self.input_ep)
            return ''.join([chr(x) for x in ret_array])  # always returns 1

测试用例:

driver = ud(0x0403, 0xed72)  # HAMEG HO720 Serial Port
driver.check_device('HAMEG HO720')
driver.config_device()
driver.send("*IDN?")    
print(driver.read_string())

预期输出:

HAMEG,HMP4040,055310003,HW50020001/SW2.41

几天后,我自己解决了这个问题。 似乎某些 USB 设备需要终止字符(在我的例子中是换行符 '\n'),因此在发送带有换行符的消息后,设备开始回复。

希望我的案例对大家有所帮助