Usb serial controller for Android. A more complete description
CP210X devices Default: 9600,8,1,None,flow off
Bluegiga BLED112 Dongle Default 115200,8,1,None,flow off
FTDI devices Default: 9600,8,1,None,flow off
PL2303 devices Default 9600,8,1,None,flow off
Instantiate a new object of the desired device you want to handle
UsbDevice device;
UsbDeviceConnection usbConnection;
...
CP2102SerialDevice cp2102 = new CP2102SerialDevice(device, usbConnection);
// Factory method, auto detect current device connected, return null if is not supported
// UsbSerialDevice serial = UsbSerialDevice.createUsbSerialDevice(device, usbConnection);
Open the device and set it up as desired
cp2102.open();
cp2102.setBaudRate(115200);
cp2102.setDataBits(UsbSerialInterface.DATA_BITS_8);
cp2102.setParity(UsbSerialInterface.PARITY_ODD);
There is no need to be polling if you want to perform a bulk transaction to a IN endpoint. Define a simply callback
private UsbSerialInterface.UsbReadCallback mCallback = new UsbSerialInterface.UsbReadCallback() {
@Override
public void onReceivedData(byte[] arg0)
{
// Code here :)
}
};
And pass a reference of it
cp2102.read(mCallback);
Write something
cp2102.write("DATA".getBytes()); // Async-like operation now! :)
Close the device:
cp2102.close();
In Android usb api, when a usb device has been close it must be reopened
UsbDevice device;
...
UsbManager manager = (UsbManager) getSystemService(Context.USB_SERVICE);
manager.openDevice(UsbDevice device)
- RTS/CTS and DSR/DTR functions needed to raise hardware flow control signals