谷歌Chrome WebUSB API在尝试声明接口时出现错误

9
我正在尝试使用Google Chrome WebUSB API通过USB访问连接到计算机的读卡器。按照这里的说明,一切都很好,直到我尝试声明接口时出现错误:“无法声明接口0:设备或资源忙”。看起来我的操作系统(Linux Mint)已经访问了此设备并且不允许运算符访问。有什么建议可以克服这个问题吗?编辑:当我取消绑定驱动程序时,我会收到以下错误:“无法声明接口0:没有这样的文件或目录”。此外,这个设备的lsusb -v输出在此处。
Bus 001 Device 012: ID 0ca6:a050 Castles Technology Co., Ltd 
Device Descriptor:
  bLength                18
  bDescriptorType         1
  bcdUSB               2.00
  bDeviceClass            2 Communications
  bDeviceSubClass         0 
  bDeviceProtocol         0 
  bMaxPacketSize0        64
  idVendor           0x0ca6 Castles Technology Co., Ltd
  idProduct          0xa050 
  bcdDevice            0.00
  iManufacturer           1 Linux 2.6.32.9 with dwc_otg_pcd
  iProduct                2 EFT-POS Terminal
  iSerial                 0 
  bNumConfigurations      1
  Configuration Descriptor:
    bLength                 9
    bDescriptorType         2
    wTotalLength           67
    bNumInterfaces          2
    bConfigurationValue     2
    iConfiguration          3 EFT-POS Terminal
    bmAttributes         0xc0
      Self Powered
    MaxPower                2mA
    Interface Descriptor:
      bLength                 9
      bDescriptorType         4
      bInterfaceNumber        0
      bAlternateSetting       0
      bNumEndpoints           1
      bInterfaceClass         2 Communications
      bInterfaceSubClass      2 Abstract (modem)
      bInterfaceProtocol      1 AT-commands (v.25ter)
      iInterface              4 CDC Abstract Control Model (ACM)
      CDC Header:
        bcdCDC               1.10
      CDC Call Management:
        bmCapabilities       0x00
        bDataInterface          1
      CDC ACM:
        bmCapabilities       0x02
          line coding and serial state
      CDC Union:
        bMasterInterface        0
        bSlaveInterface         1 
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x82  EP 2 IN
        bmAttributes            3
          Transfer Type            Interrupt
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x000a  1x 10 bytes
        bInterval              32
    Interface Descriptor:
      bLength                 9
      bDescriptorType         4
      bInterfaceNumber        1
      bAlternateSetting       0
      bNumEndpoints           2
      bInterfaceClass        10 CDC Data
      bInterfaceSubClass      0 Unused
      bInterfaceProtocol      0 
      iInterface              5 CDC ACM Data
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x81  EP 1 IN
        bmAttributes            2
          Transfer Type            Bulk
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0040  1x 64 bytes
        bInterval               0
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x01  EP 1 OUT
        bmAttributes            2
          Transfer Type            Bulk
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0040  1x 64 bytes
        bInterval               0
Device Qualifier (for other device speed):
  bLength                10
  bDescriptorType         6
  bcdUSB               2.00
  bDeviceClass            2 Communications
  bDeviceSubClass         0 
  bDeviceProtocol         0 
  bMaxPacketSize0        64
  bNumConfigurations      1
Device Status:     0x0001
  Self Powered

第一个错误是正常的,因为内核驱动程序已绑定。对于第二个错误,我需要更多关于设备的信息。你能发布从 lsusb -v获取到的完整描述吗? - Reilly Grant
@ReillyGrant 这是一个很长的问题,我已经在编辑部分中描述了。 - jdrake
1个回答

2
“没有这样的文件或目录”(错误代码ENOENT)通常表示提供的接口编号不存在,但从描述符来看,显然情况并非如此。如果在提交请求到内核之前,Chrome认为接口号无效,则会拒绝通过claimInterface返回的Promise,并显示“该设备不支持提供的接口编号”。
然而,我注意到,该设备支持的单个配置的bConfigurationValue为2。当驱动程序解除绑定时,系统可能会取消配置该设备,现在Chrome对设备当前配置的了解与系统不同步。如果您在/sys/bus/usb/devices中找到该设备并打印bConfigurationValue文件,它将告诉您设备的真实当前配置,我猜测应该是0。
不幸的是,目前无法通过WebUSB API解决此不匹配问题,但是在解除内核驱动程序绑定后重新启动Chrome将允许它在正确的时间读取此文件并保持同步。
如果这对您有用,请在crbug.com/new上提交错误报告,我们可以找出避免未来出现此问题的最佳方法。

“bConfigurationValue” 在 “/sys/bus/usb/devices” 下仍为 2。 我重新启动了 Chrome 并再次尝试,除了配置 2 之外的任何内容都会导致配置超出范围的错误。但是这一次,错误消息又变成了:“无法声明接口 0:设备或资源忙”,尽管该设备已经解绑。 - jdrake

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接