5

我正在尝试让 Android USB 主机模式工作;但我需要将波特率设置为 56000。我只找到了这段代码:

UsbDeviceConnection myConnection;
myConnection.controlTransfer(0x40, 0x03, 0x4138, 0, null, 0, 0);//baudrate 9600

在参考资料中,我没有找到任何关于此的内容。

非常感谢!

4

1 回答 1

1

The command shown contains the baud rate divisor. A good explanation for the calculation of baud rates is (here)[ http://www.mev.co.uk/pages/Support/USB-Baud-Spoof.html ]

于 2012-06-18T21:14:32.227 回答