user387184
user387184

Reputation: 11053

setting baud rate for UsbDeviceConnection

I am trying to get Android USB host mode to work; but I need to set the baud rate to 56000. I only found this code:

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

In the references I did not find anything about this.

Many thanks!

Upvotes: 5

Views: 4768

Answers (1)

starbolin
starbolin

Reputation: 840

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 ]

Upvotes: 1

Related Questions