Compartir a través de


función WDF_USB_CONTROL_SETUP_PACKET_INIT_FEATURE (wdfusb.h)

[Se aplica a KMDF y UMDF]

La función WDF_USB_CONTROL_SETUP_PACKET_INIT_FEATURE inicializa una estructura de WDF_USB_CONTROL_SETUP_PACKET para una transferencia de control USB que establece o borra una característica de dispositivo.

Sintaxis

void WDF_USB_CONTROL_SETUP_PACKET_INIT_FEATURE(
  [out] PWDF_USB_CONTROL_SETUP_PACKET Packet,
  [in]  WDF_USB_BMREQUEST_RECIPIENT   BmRequestRecipient,
  [in]  USHORT                        FeatureSelector,
  [in]  USHORT                        Index,
  [in]  BOOLEAN                       SetFeature
);

Parámetros

[out] Packet

Puntero a una estructura de WDF_USB_CONTROL_SETUP_PACKET .

[in] BmRequestRecipient

Valor WDF_USB_BMREQUEST_RECIPIENT con tipo que se almacena en el miembro Packet.bm.Request.Recipient de la estructura WDF_USB_CONTROL_SETUP_PACKET .

[in] FeatureSelector

Valor específico de la característica que se almacena en el miembro Packet.wValue.Value de la estructura WDF_USB_CONTROL_SETUP_PACKET .

[in] Index

Valor de índice específico de la característica que se almacena en el miembro Packet.wIndex.Value de la estructura WDF_USB_CONTROL_SETUP_PACKET .

[in] SetFeature

Valor booleano que, si es TRUE, indica que se establecerá la característica especificada. Si es FALSE, se borrará la característica especificada.

Valor devuelto

None

Observaciones

La función WDF_USB_CONTROL_SETUP_PACKET_INIT_FEATURE hace lo siguiente:

  1. Cero la estructura WDF_USB_CONTROL_SETUP_PACKET .
  2. Establece el miembro Packet.bm.Request.Type en BmRequestStandard.
  3. Establece el miembro Packet.bm.Request.Dir en BmRequestDeviceToDevice.
  4. Establece el miembro Packet.bRequest en un valor de solicitud "set feature" o "clear feature", en función del argumento SetFeature .
  5. Establece otros miembros de estructura mediante los argumentos de entrada de la función WDF_USB_CONTROL_SETUP_PACKET_INIT_FEATURE .
Para inicializar una estructura de WDF_USB_CONTROL_SETUP_PACKET , el controlador debe llamar a una de las siguientes funciones:

Ejemplos

En el ejemplo de código siguiente se inicializa una estructura de WDF_USB_CONTROL_SETUP_PACKET .

WDF_USB_CONTROL_SETUP_PACKET packet;

WDF_USB_CONTROL_SETUP_PACKET_INIT_FEATURE(
                                          &packet,
                                          BMREQUEST_TO_DEVICE,
                                          USB_DEVICE_DESCRIPTOR_TYPE,
                                          0,
                                          FALSE
                                          );

Requisitos

Requisito Value
Plataforma de destino Universal
Versión mínima de KMDF 1.0
Versión mínima de UMDF 2.0
Encabezado wdfusb.h (incluya Wdfusb.h)

Consulte también

WDF_USB_BMREQUEST_RECIPIENT

WDF_USB_CONTROL_SETUP_PACKET

WDF_USB_CONTROL_SETUP_PACKET_INIT

WDF_USB_CONTROL_SETUP_PACKET_INIT_CLASS

WDF_USB_CONTROL_SETUP_PACKET_INIT_GET_STATUS

WDF_USB_CONTROL_SETUP_PACKET_INIT_VENDOR