Fields Summary |
---|
public static final int | USB_ENDPOINT_DIR_MASKBitmask used for extracting the {@link UsbEndpoint} direction from its address field. |
public static final int | USB_DIR_OUTUsed to signify direction of data for a {@link UsbEndpoint} is OUT (host to device) |
public static final int | USB_DIR_INUsed to signify direction of data for a {@link UsbEndpoint} is IN (device to host) |
public static final int | USB_ENDPOINT_NUMBER_MASKBitmask used for extracting the {@link UsbEndpoint} number its address field. |
public static final int | USB_ENDPOINT_XFERTYPE_MASKBitmask used for extracting the {@link UsbEndpoint} type from its address field. |
public static final int | USB_ENDPOINT_XFER_CONTROLControl endpoint type (endpoint zero) |
public static final int | USB_ENDPOINT_XFER_ISOCIsochronous endpoint type (currently not supported) |
public static final int | USB_ENDPOINT_XFER_BULKBulk endpoint type |
public static final int | USB_ENDPOINT_XFER_INTInterrupt endpoint type |
public static final int | USB_TYPE_MASKBitmask used for encoding the request type for a control request on endpoint zero. |
public static final int | USB_TYPE_STANDARDUsed to specify that an endpoint zero control request is a standard request. |
public static final int | USB_TYPE_CLASSUsed to specify that an endpoint zero control request is a class specific request. |
public static final int | USB_TYPE_VENDORUsed to specify that an endpoint zero control request is a vendor specific request. |
public static final int | USB_TYPE_RESERVEDReserved endpoint zero control request type (currently unused). |
public static final int | USB_CLASS_PER_INTERFACEUSB class indicating that the class is determined on a per-interface basis. |
public static final int | USB_CLASS_AUDIOUSB class for audio devices. |
public static final int | USB_CLASS_COMMUSB class for communication devices. |
public static final int | USB_CLASS_HIDUSB class for human interface devices (for example, mice and keyboards). |
public static final int | USB_CLASS_PHYSICAUSB class for physical devices. |
public static final int | USB_CLASS_STILL_IMAGEUSB class for still image devices (digital cameras). |
public static final int | USB_CLASS_PRINTERUSB class for printers. |
public static final int | USB_CLASS_MASS_STORAGEUSB class for mass storage devices. |
public static final int | USB_CLASS_HUBUSB class for USB hubs. |
public static final int | USB_CLASS_CDC_DATAUSB class for CDC devices (communications device class). |
public static final int | USB_CLASS_CSCIDUSB class for content smart card devices. |
public static final int | USB_CLASS_CONTENT_SECUSB class for content security devices. |
public static final int | USB_CLASS_VIDEOUSB class for video devices. |
public static final int | USB_CLASS_WIRELESS_CONTROLLERUSB class for wireless controller devices. |
public static final int | USB_CLASS_MISCUSB class for wireless miscellaneous devices. |
public static final int | USB_CLASS_APP_SPECApplication specific USB class. |
public static final int | USB_CLASS_VENDOR_SPECVendor specific USB class. |
public static final int | USB_INTERFACE_SUBCLASS_BOOTBoot subclass for HID devices. |
public static final int | USB_SUBCLASS_VENDOR_SPECVendor specific USB subclass. |