UsbDeviceConnectionpublic class UsbDeviceConnection extends Object This class is used for sending and receiving data and control messages to a USB device.
Instances of this class are created by {@link UsbManager#openDevice}. |
Fields Summary |
---|
private static final String | TAG | private final UsbDevice | mDevice | private long | mNativeContext |
Constructors Summary |
---|
public UsbDeviceConnection(UsbDevice device)UsbDevice should only be instantiated by UsbService implementation
mDevice = device;
|
Methods Summary |
---|
public int | bulkTransfer(UsbEndpoint endpoint, byte[] buffer, int length, int timeout)Performs a bulk transaction on the given endpoint.
The direction of the transfer is determined by the direction of the endpoint.
This method transfers data starting from index 0 in the buffer.
To specify a different offset, use
{@link #bulkTransfer(UsbEndpoint, byte[], int, int, int)}.
return bulkTransfer(endpoint, buffer, 0, length, timeout);
| public int | bulkTransfer(UsbEndpoint endpoint, byte[] buffer, int offset, int length, int timeout)Performs a bulk transaction on the given endpoint.
The direction of the transfer is determined by the direction of the endpoint.
checkBounds(buffer, offset, length);
return native_bulk_request(endpoint.getAddress(), buffer, offset, length, timeout);
| private static void | checkBounds(byte[] buffer, int start, int length)
final int bufferLength = (buffer != null ? buffer.length : 0);
if (start < 0 || start + length > bufferLength) {
throw new IllegalArgumentException("Buffer start or length out of bounds.");
}
| public boolean | claimInterface(UsbInterface intf, boolean force)Claims exclusive access to a {@link android.hardware.usb.UsbInterface}.
This must be done before sending or receiving data on any
{@link android.hardware.usb.UsbEndpoint}s belonging to the interface.
return native_claim_interface(intf.getId(), force);
| public void | close()Releases all system resources related to the device.
Once the object is closed it cannot be used again.
The client must call {@link UsbManager#openDevice} again
to retrieve a new instance to reestablish communication with the device.
native_close();
| public int | controlTransfer(int requestType, int request, int value, int index, byte[] buffer, int length, int timeout)Performs a control transaction on endpoint zero for this device.
The direction of the transfer is determined by the request type.
If requestType & {@link UsbConstants#USB_ENDPOINT_DIR_MASK} is
{@link UsbConstants#USB_DIR_OUT}, then the transfer is a write,
and if it is {@link UsbConstants#USB_DIR_IN}, then the transfer
is a read.
This method transfers data starting from index 0 in the buffer.
To specify a different offset, use
{@link #controlTransfer(int, int, int, int, byte[], int, int, int)}.
return controlTransfer(requestType, request, value, index, buffer, 0, length, timeout);
| public int | controlTransfer(int requestType, int request, int value, int index, byte[] buffer, int offset, int length, int timeout)Performs a control transaction on endpoint zero for this device.
The direction of the transfer is determined by the request type.
If requestType & {@link UsbConstants#USB_ENDPOINT_DIR_MASK} is
{@link UsbConstants#USB_DIR_OUT}, then the transfer is a write,
and if it is {@link UsbConstants#USB_DIR_IN}, then the transfer
is a read.
checkBounds(buffer, offset, length);
return native_control_request(requestType, request, value, index,
buffer, offset, length, timeout);
| public int | getFileDescriptor()Returns the native file descriptor for the device, or
-1 if the device is not opened.
This is intended for passing to native code to access the device.
return native_get_fd();
| public byte[] | getRawDescriptors()Returns the raw USB descriptors for the device.
This can be used to access descriptors not supported directly
via the higher level APIs.
return native_get_desc();
| public java.lang.String | getSerial()Returns the serial number for the device.
This will return null if the device has not been opened.
return native_get_serial();
| private native int | native_bulk_request(int endpoint, byte[] buffer, int offset, int length, int timeout)
| private native boolean | native_claim_interface(int interfaceID, boolean force)
| private native void | native_close()
| private native int | native_control_request(int requestType, int request, int value, int index, byte[] buffer, int offset, int length, int timeout)
| private native byte[] | native_get_desc()
| private native int | native_get_fd()
| private native java.lang.String | native_get_serial()
| private native boolean | native_open(java.lang.String deviceName, java.io.FileDescriptor pfd)
| private native boolean | native_release_interface(int interfaceID)
| private native UsbRequest | native_request_wait()
| private native boolean | native_set_configuration(int configurationID)
| private native boolean | native_set_interface(int interfaceID, int alternateSetting)
| boolean | open(java.lang.String name, android.os.ParcelFileDescriptor pfd)
return native_open(name, pfd.getFileDescriptor());
| public boolean | releaseInterface(UsbInterface intf)Releases exclusive access to a {@link android.hardware.usb.UsbInterface}.
return native_release_interface(intf.getId());
| public UsbRequest | requestWait()Waits for the result of a {@link android.hardware.usb.UsbRequest#queue} operation
Note that this may return requests queued on multiple
{@link android.hardware.usb.UsbEndpoint}s.
When multiple endpoints are in use, {@link android.hardware.usb.UsbRequest#getEndpoint} and
{@link android.hardware.usb.UsbRequest#getClientData} can be useful in determining
how to process the result of this function.
UsbRequest request = native_request_wait();
if (request != null) {
request.dequeue();
}
return request;
| public boolean | setConfiguration(UsbConfiguration configuration)Sets the device's current {@link android.hardware.usb.UsbConfiguration}.
return native_set_configuration(configuration.getId());
| public boolean | setInterface(UsbInterface intf)Sets the current {@link android.hardware.usb.UsbInterface}.
Used to select between two interfaces with the same ID but different alternate setting.
return native_set_interface(intf.getId(), intf.getAlternateSetting());
|
|