Example usage for Java android.hardware.usb UsbConstants fields, constructors, methods, implement or subclass
The text is from its open source code.
int | USB_DIR_OUT Used to signify direction of data for a UsbEndpoint is OUT (host to device) |
int | USB_DIR_IN Used to signify direction of data for a UsbEndpoint is IN (device to host) |
int | USB_ENDPOINT_XFER_CONTROL Control endpoint type (endpoint zero) |
int | USB_ENDPOINT_XFER_ISOC Isochronous endpoint type (currently not supported) |
int | USB_ENDPOINT_XFER_BULK Bulk endpoint type |
int | USB_ENDPOINT_XFER_INT Interrupt endpoint type |
int | USB_TYPE_STANDARD Used to specify that an endpoint zero control request is a standard request. |
int | USB_TYPE_CLASS Used to specify that an endpoint zero control request is a class specific request. |
int | USB_TYPE_VENDOR Used to specify that an endpoint zero control request is a vendor specific request. |
int | USB_TYPE_RESERVED Reserved endpoint zero control request type (currently unused). |
int | USB_CLASS_PER_INTERFACE USB class indicating that the class is determined on a per-interface basis. |
int | USB_CLASS_COMM USB class for communication devices. |
int | USB_CLASS_STILL_IMAGE USB class for still image devices (digital cameras). |
int | USB_CLASS_CDC_DATA USB class for CDC devices (communications device class). |
int | USB_CLASS_VENDOR_SPEC Vendor specific USB class. |