bulkTransfer返回正值但通信不成功

时间:2015-05-27 19:49:56

标签: java android usb cdc

正如 Google Android Developers

所述
  

public int bulkTransfer(UsbEndpoint endpoint,byte [] buffer,int   length,int timeout)

     

返回 成功传输的数据长度(或零),或失败的负值

好吧,在我的应用程序中执行bulkTransfer进行USB CDC通信

之后
// send data to usb device
byte[] bytes = data.getBytes();
sentBytes = connection.bulkTransfer(output, bytes, bytes.length, 1000);

sentBytes正在接收16的值,这很好,因为我确实发送了16个字节。

表示字节已正确发送。 : - )

然而,他们。我在另一方面看不到任何结果。

在做了重新研究之后我发现它可能是一个接口问题,所以这就是我从设备上获取它的方式:

private void setupConnection()
    {
        // find the right interface
        for(int i = 0; i < usbDevice.getInterfaceCount(); i++)
        {
            // communications device class (CDC) type device
            if(usbDevice.getInterface(i).getInterfaceClass() == UsbConstants.USB_CLASS_CDC_DATA)
            {
                intf = usbDevice.getInterface(i);

                // find the endpoints
                for(int j = 0; j < intf.getEndpointCount(); j++)
                {
                    if(intf.getEndpoint(j).getDirection() == UsbConstants.USB_DIR_OUT && intf.getEndpoint(j).getType() == UsbConstants.USB_ENDPOINT_XFER_BULK)
                    {
                        // from android to device
                        output = intf.getEndpoint(j);
                    }

                    if(intf.getEndpoint(j).getDirection() == UsbConstants.USB_DIR_IN && intf.getEndpoint(j).getType() == UsbConstants.USB_ENDPOINT_XFER_BULK)
                    {
                        // from device to android
                        input = intf.getEndpoint(j);
                    }
                }
            }
        }
    }

我可能会错过什么?

0 个答案:

没有答案