1

我使用 usbmon 来分析 usb 数据包,并在 webusb 中实现它,但是我无法找到解决方案。这是 Sane 发送到 USB 的内容:

 S Co:1:074:0 s 02 01 0000 0081 0000 0
 C Co:1:074:0 0 0
 S Co:1:074:0 s 02 01 0000 0002 0000 0
 C Co:1:074:0 0 0

这类似于 controlTransferOut() 命令,requestType=Standard,receiver: 'endpoint', request: 1, index: 0x00, value:129

这里的“值”非常棘手,因为根据文档,所有其他参数都应该是正确的,但是发送 value:129 应该发送如下内容:

 S Co:1:074:0 s 02 01 0081 0000 0000 0

但是我得到的是:

Uncaught (in promise) DOMException: The specified endpoint number is out of range. 

而 value 是一个无符号的 short,最大 0xffff !所以显然值应该是0,下一个半字节0x0081。我的问题是如何用第二个半字节的值触发控制输出(Co)?

代码是这样的:

 navigator.usb.requestDevice({ filters: [{ vendorId: 0x1083}] })
    .then(selectedDevice => {
       device = selectedDevice;
       return device.open(); // Begin a session.
     })
  .then(() => device.selectConfiguration(1))
    .then(() => device.claimInterface(0))
    .then(() => device.controlTransferOut({
    requestType: 'standard',
    recipient: 'endpoint',
    request: 0x00, 
    value: 129, 
    index: 0x00})) 

例如,所有其他组合都与响应“Stall”一起发送(类,接口:21 - 供应商,设备:40 ...等)。

设备描述和端点描述符可在此处获得

谢谢

4

1 回答 1

3

刚刚找到它,请求应该是:

device.controlTransferOut({
    requestType: 'standard',
    recipient: 'endpoint',
    request: 1, 
    value: 0, 
    index: 129})

这给:

S Co:1:075:0 s 02 01 0000 0081 0000 0 C Co:1:075:0 0 0

这正是我需要的。

于 2018-01-18T09:51:47.303 回答