UsbSerial/README.md

80 wiersze
2.1 KiB
Markdown
Czysty Zwykły widok Historia

2014-03-20 11:23:57 +00:00
UsbSerial
=========
2014-04-15 20:57:59 +00:00
Usb serial controller for Android.
Devices Supported
--------------------------------------
[CP210X devices](http://www.silabs.com/products/mcu/pages/usbtouartbridgevcpdrivers.aspx) Default: 9600,8,1,None,flow off
[Bluegiga BLED112 Dongle](https://www.bluegiga.com/en-US/products/bluetooth-4.0-modules/bled112-bluetooth-smart-dongle/) Default 115200,8,1,None,flow off
How to use it?
--------------------------------------
Instantiate a new object of the desired device you want to handle
~~~
UsbDevice device;
UsbDeviceConnection usbConnection;
...
CP2102SerialDevice cp2102 = new CP2102SerialDevice(device, usbConnection);
2014-04-15 21:26:14 +00:00
//UsbSerialDevice bled112 = new BLED112SerialDevice(device, usbConnection);
2014-04-15 20:57:59 +00:00
~~~
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! :)
2014-04-15 20:57:59 +00:00
~~~
2014-04-15 21:26:14 +00:00
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)
~~~
2014-04-15 20:57:59 +00:00
TO-DO
--------------------------------------
- Add more devices (pretty obvious)
- RTS/CTS and DSR/DTR functions needed to raise hardware flow control signals
- A serious refactoring is needed to move common logic to UsbSerialDevice (This would help other people to add new devices)
- Whatever you think can be a good addition
2014-04-15 23:58:25 +00:00
[A little history about why I am doing this](http://felhr85.net/2014/04/15/a-little-library-to-use-serial-port-in-android/)
2014-04-15 22:09:10 +00:00
2014-04-15 20:57:59 +00:00