Android通信与USB到串行设备和控制传输



我已经搜索了很多帖子,比如这个:Android与USB HID设备通信

但我仍然没有得到你如何确定requestTypecontrolTransfer呼叫?

public int controlTransfer (int requestType, int request, int value, int index, byte[] buffer, int length, int timeout)

我需要为我的设备设置EVEN奇偶校验,它似乎不起作用。下面是我的代码:

        UsbDeviceConnection conn = mUsbManager.openDevice(mDevice);
        l("Device opened...");
        l("Trying to open interface on 0");
        UsbInterface deviceInterface = mDevice.getInterface(0);
        if (!conn.claimInterface(deviceInterface, true)) {
            l("Could not claim interface on 0");
            return;
        }
        int defaultDataBits = 8;
        int config = defaultDataBits;
        config |= (0x02 << 8); //even parity
        config |= (0x00 << 11); //stop bits
        conn.controlTransfer(0x40, 0, 0, 0, null, 0, 0);// reset
        conn.controlTransfer(0x40, 0, 1, 0, null, 0, 0);// clear Rx
        conn.controlTransfer(0x40, 0, 2, 0, null, 0, 0);// clear Tx
        conn.controlTransfer(0x40, 0x04, config, 0, null, 0, 0);// set even parity
        conn.controlTransfer(0x40, 0x03, 0x4138, 0, null, 0, 0);// set 9600 baud rate

requestType 0x40对我来说没有任何意义,一些例子在0x21或0x81或0xA1…

获得正确的requestType的最好方法是什么?

我还应该提到,我希望在PC上接收偶数奇偶校验的数据,如果我将PC上串行端口的奇偶校验设置为NONE -我接收预期数据,因此我得出结论,我对设备进行的controlTransfer调用不起作用。

这是我的USB到串行设备,我试图从Android配置:

Device Info 
Device Path: /dev/bus/usb/001/002
Device Class: Use class information in the Interface Descriptors (0x0)
Vendor ID:  067b
Vendor Name:  Prolific Technology, Inc.
Product ID:  03ea

Interfaces 
    Interface #0 
    Class: Vendor Specific (0xff)
Endpoint: #0
    Address        : 129 (10000001)
    Number         : 1
    Direction      : Inbound (0x80)
    Type           : Intrrupt (0x3)
    Poll Interval  : 1
    Max Packet Size: 10
    Attributes     : 000000011
Endpoint: #1
    Address        : 2 (000000010)
    Number         : 2
    Direction      : Outbound (0x0)
    Type           : Bulk (0x2)
    Poll Interval  : 0
    Max Packet Size: 64
    Attributes     : 000000010
Endpoint: #2
    Address        : 131 (10000011)
    Number         : 3
    Direction      : Inbound (0x80)
    Type           : Bulk (0x2)
    Poll Interval  : 0
    Max Packet Size: 64
    Attributes     : 000000010

谢谢你的帮助。

这是USB规范的一部分,特别是bmRequestType。以下是C语言的位掩码列表,您可以在项目中将其定义为static final int。它们有时在SDK或驱动程序工具包中围绕操作系统定义,或者您可以指定原始十六进制字节(如上所述,但定义的位掩码对于可读性很好):

/* Setup Data Constants */
#define USB_SETUP_HOST_TO_DEVICE      0x00 // Device Request bmRequestType transfer direction - host to device transfer
#define USB_SETUP_DEVICE_TO_HOST      0x80 // Device Request bmRequestType transfer direction - device to host transfer
#define USB_SETUP_TYPE_STANDARD       0x00 // Device Request bmRequestType type - standard
#define USB_SETUP_TYPE_CLASS          0x20 // Device Request bmRequestType type - class
#define USB_SETUP_TYPE_VENDOR         0x40 // Device Request bmRequestType type - vendor
#define USB_SETUP_RECIPIENT_DEVICE    0x00 // Device Request bmRequestType recipient - device
#define USB_SETUP_RECIPIENT_INTERFACE 0x01 // Device Request bmRequestType recipient - interface
#define USB_SETUP_RECIPIENT_ENDPOINT  0x02 // Device Request bmRequestType recipient - endpoint
#define USB_SETUP_RECIPIENT_OTHER     0x03 // Device Request bmRequestType recipient - other
您需要为请求类型 提供三个掩码
  • 请求类型
  • 收件人

在您的情况下,0x40代表从Android主机到您连接的设备的供应商请求,设备本身作为接收者(相对于特定的端点或接口)。如果您有多个接口,则需要指定USB_SETUP_RECIPIENT_INTERFACE,然后在index参数中传递接口号以将其传递到正确的位置。但在你的情况下,接收者将真正取决于你的设备如何期望数据,高产可能有一个规格。您可以尝试设置0x01位,看看它是否解决了您的问题,这可能是对接口0的特定请求,但这可能无关紧要,因为您的设备无论如何只有一个接口。

请注意,此参数完全特定于USB,与设备上的奇偶校验无关,但如果您没有正确获取这些数据包,那么您的设置将不会在设备上进行,正如您所看到的。如果USB请求正确,则检查config

相关内容

  • 没有找到相关文章

最新更新