enum libusb_request_type

Overview

Request type bits of the bmRequestType field in control transfers. Moreā€¦

#include <libusb.h>

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),
};

Detailed Documentation

Request type bits of the bmRequestType field in control transfers.

Enum Values

LIBUSB_REQUEST_TYPE_STANDARD

Standard.

LIBUSB_REQUEST_TYPE_CLASS

Class.

LIBUSB_REQUEST_TYPE_VENDOR

Vendor.

LIBUSB_REQUEST_TYPE_RESERVED

Reserved.