WDI_DATA_RATE_FLAGS enumeration (dot11wificxtypes.h)

Important

This topic is part of the WiFiCx driver model. WiFiCx is the Wi-Fi driver model released in Windows 11. We recommend that you use WiFiCx to take advantage of the latest features. The previous Wi-Fi driver model WDI is in maintenance mode and will only receive high priority fixes.

The WDI_DATA_RATE_FLAGS enumeration defines the data rate flags.

Syntax

typedef enum _WDI_DATA_RATE_FLAGS {
  WDI_DATA_RATE_NON_STANDARD = 0x01,
  WDI_DATA_RATE_RX_RATE = 0x02,
  WDI_DATA_RATE_TX_RATE = 0x04
} WDI_DATA_RATE_FLAGS;

Constants

 
WDI_DATA_RATE_NON_STANDARD
Value: 0x01
The data rate is not a standard data rate defined in the IEEE 802.11 standards.
WDI_DATA_RATE_RX_RATE
Value: 0x02
The data rate can be used for RX.
WDI_DATA_RATE_TX_RATE
Value: 0x04
The data rate can be used for TX.

Remarks

The WDI_DATA_RATE_FLAGS enum is a member of the WDI_DATA_RATE_ENTRY structure.

Requirements

Requirement Value
Minimum supported client Windows 11
Minimum supported server Windows Server 2022
Header dot11wificxtypes.h

See also

WDI_DATA_RATE_ENTRY