libusb_request_type is only used within OpenOCD.
 
Symbols
loading...
Files
loading...

libusb_request_type enum

Request type bits of the libusb_control_setup ::bmRequestType "bmRequestType" field in control transfers.

Syntax

enum libusb_request_type {     LIBUSB_REQUEST_TYPE_STANDARD = (0x00 << 5),     LIBUSB_REQUEST_TYPE_CLASS = (0x01 << 5),     LIBUSB_REQUEST_TYPE_VENDOR = (0x02 << 5),     LIBUSB_REQUEST_TYPE_RESERVED = (0x03 << 5) };

Values

LIBUSB_REQUEST_TYPE_STANDARD

Standard. Read more...

LIBUSB_REQUEST_TYPE_CLASS

Class. Read more...

LIBUSB_REQUEST_TYPE_VENDOR

Vendor. Read more...

LIBUSB_REQUEST_TYPE_RESERVED

Reserved. Read more...

References

LocationText
libusb.h:439
enum libusb_request_type {