1

我正在尝试通过 USB 从一组称重秤中获取重量值。这应该很简单,根据他们的文档,我需要发送两个字节,字母“W”和回车字节。然后它以 16 字节的数据作为响应,表示设备上的当前重量。

该设备有 1 个接口,2 个端点,最大数据包大小为 64。我相信我必须使用该bulkTransfer函数,因为端点类型是 USB_ENDPOINT_XFER_BULK。

在此处输入图像描述

这是文档图形: 在此处输入图像描述

我应该如何发送此请求并接收响应?我的尝试如下,响应只是一个标题符号的开始,然后是一个反引号符号“`”和一个零负载。我试图在轮询循环或单个请求上运行代码,但得到相同的结果。

    val connection = usbManager.openDevice(scales)
    val intf: UsbInterface = scales.getInterface(0)
    connection.claimInterface(intf, true)

    val endpointReadIn = intf.getEndpoint(0)
    val endpointWriteOut = intf.getEndpoint(1)

    val bytes = byteArrayOf(0x57.toByte(), 0x0D.toByte())

    thread {
        val request = connection.bulkTransfer(endpointWriteOut, bytes, bytes.size, 0)
        Log.d(TAG, "Was request to write successful? $request")
        val buffer = ByteArray(16)
        val response = connection.bulkTransfer(endpointReadIn, buffer, buffer.size, 0)
        Log.d(TAG, "Was response from read successful? $response")
        val responseString = StringBuilder()
        for (i in 0..15) {
            responseString.append(buffer[i])
        }
        Log.d(TAG, "Response: $responseString")

        val hex = toHexString(buffer)
        Log.d(TAG, "Hex: $hex")

        connection.close()
    }


    fun fromHexString(hexString: String): ByteArray {
        val len = hexString.length / 2
        val bytes = ByteArray(len)
        for (i in 0 until len) bytes[i] = hexString.substring(2 * i, 2 * i + 2).toInt(16).toByte()
        return bytes
    }

输出:

Was request to write successful? 2
Was response from read successful? 2
Response: 19600000000000000
Hex:  01 60 00 00 00 00 00 00 00 00 00 00 00 00 00 00
4

1 回答 1

1

这里有一些缺失的部分。我认为最重要的是没有指定波特率、数据位、停止位和奇偶校验,这些都是通过controlTransfer函数实现的。

最后,尽管在设置这些时获得了成功的响应,但我无法让它自己工作。然后我发现了这个可爱的库,它与这个 RS232 设备兼容并且运行良好。我只需要指定 vid / pid 即可使用FtdiSerialDriver该类获取自定义驱动程序。

于 2020-03-06T13:41:40.380 回答