Nota
L'accesso a questa pagina richiede l'autorizzazione. È possibile provare ad accedere o modificare le directory.
L'accesso a questa pagina richiede l'autorizzazione. È possibile provare a modificare le directory.
Important
WiFiCx is the new Wi-Fi driver model released in Windows 11. Ti consigliamo di usare WiFiCx per sfruttare le funzionalità più recenti. Il modello di driver WDI è ora in modalità di manutenzione e riceverà solo correzioni ad alta priorità.
La struttura DOT11_SUPPORTED_DATA_RATES_VALUE_V2 specifica un elenco di frequenze di trasmissione e ricezione dei dati per un PHY sulla stazione 802.11.
Syntax
typedef struct _DOT11_SUPPORTED_DATA_RATES_VALUE_V2 {
UCHAR ucSupportedTxDataRatesValue[MAX_NUM_SUPPORTED_RATES_V2];
UCHAR ucSupportedRxDataRatesValue[MAX_NUM_SUPPORTED_RATES_V2];
} DOT11_SUPPORTED_DATA_RATES_VALUE_V2, *PDOT11_SUPPORTED_DATA_RATES_VALUE_V2;
Members
ucSupportedTxDataRatesValue[MAX_NUM_SUPPORTED_RATES_V2]
Matrice delle frequenze dei dati di trasmissione supportate dal sottostrato PLCP (Physical Layer Convergence Procedure) e dal sublayer Physical Media Dependent (PMD) del PHY.
ucSupportedRxDataRatesValue[MAX_NUM_SUPPORTED_RATES_V2]
Matrice delle frequenze di dati di ricezione supportate dai PLCP e PMD del PHY.
Remarks
Each entry in the ucSupportedTxDataRatesValue and ucSupportedRxDataRatesValue arrays must have a data rate index value as defined for the ucDataRateIndex member of the DOT11_DATA_RATE_MAPPING_ENTRY structure. Each entry in these arrays must match a ucDataRateIndex member from the table of data rates returned through a query of OID_DOT11_DATA_RATE_MAPPING_TABLE. Il valore dell'indice deve essere compreso tra 2 e 127.
Se il numero di frequenze supportate in una matrice è minore di 255, il driver miniport deve aggiungere una voce con un valore pari a zero dopo l'ultima frequenza dei dati nella matrice. For example, if the 802.11 station supports only four transmit data rates, the miniport driver must set ucSupportedTxDataRatesValue[0..3] with the four transmit rates and set ucSupportedTxDataRatesValue[4] to zero.
Requirements
| Requirement | Value |
|---|---|
| client minimo supportato | Disponibile in Windows Vista e versioni successive dei sistemi operativi Windows. |
| Header | windot11.h (include Ndis.h) |