Condividi tramite


EFI_USBFN_ENDPOINT_DIRECTION

L'enumerazione EFI_USBFN_ENDPOINT_DIRECTION viene usata per identificare la direzione di un trasferimento USB.

Sintassi

typedef enum _EFI_USBFN_ENDPOINT_DIRECTION 
{
    EfiUsbEndpointDirectionHostOut  = 0,
    EfiUsbEndpointDirectionHostIn,
    EfiUsbEndpointDirectionDeviceTx = EfiUsbEndpointDirectionHostIn,
    EfiUsbEndpointDirectionDeviceRx = EfiUsbEndpointDirectionHostOut
} EFI_USBFN_ENDPOINT_DIRECTION;

Costanti

EfiUsbEndpointDirectionHostOut
Indica il trasferimento USB OUT. La direzione è dall'host al dispositivo

EfiUsbEndpointDirectionHostIn
Indica il trasferimento USB IN. La direzione è dal dispositivo all'host.

EfiUsbEndpointDirectionDeviceTx
Indica il trasferimento USB IN. La direzione è dal dispositivo all'host.

EfiUsbEndpointDirectionDeviceRx
Indica il trasferimento USB OUT. La direzione è dall'host al dispositivo

Requisiti

Intestazione: Utente generato