mirror of
https://github.com/espressif/esp-idf
synced 2025-03-12 18:49:08 -04:00
docs(wifi/espnow): update the documentation for EPS-NOW ERSU and phy rate
Closes https://github.com/espressif/esp-idf/issues/12216
This commit is contained in:
parent
8004824d30
commit
43afca49b4
@ -97,9 +97,10 @@ typedef struct esp_now_recv_info {
|
|||||||
*/
|
*/
|
||||||
typedef struct esp_now_rate_config {
|
typedef struct esp_now_rate_config {
|
||||||
wifi_phy_mode_t phymode; /**< ESPNOW phymode of specified interface */
|
wifi_phy_mode_t phymode; /**< ESPNOW phymode of specified interface */
|
||||||
wifi_phy_rate_t rate; /**< ESPNOW rate of specified interface*/
|
wifi_phy_rate_t rate; /**< ESPNOW rate of specified interface */
|
||||||
bool ersu; /**< ESPNOW using ersu send frame*/
|
bool ersu; /**< ESPNOW using ERSU to send frame, ERSU is a transmission mode related to 802.11 ax.
|
||||||
bool dcm; /**< ESPNOW using dcm rate to send frame*/
|
ERSU is always used in long distance transmission, and its frame has lower rate compared with SU mode */
|
||||||
|
bool dcm; /**< ESPNOW using dcm rate to send frame */
|
||||||
} esp_now_rate_config_t;
|
} esp_now_rate_config_t;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -768,8 +768,8 @@ typedef enum {
|
|||||||
WIFI_PHY_RATE_MCS8_SGI, /**< MCS8 with short GI */
|
WIFI_PHY_RATE_MCS8_SGI, /**< MCS8 with short GI */
|
||||||
WIFI_PHY_RATE_MCS9_SGI, /**< MCS9 with short GI */
|
WIFI_PHY_RATE_MCS9_SGI, /**< MCS9 with short GI */
|
||||||
#endif
|
#endif
|
||||||
WIFI_PHY_RATE_LORA_250K = 0x29, /**< 250 Kbps */
|
WIFI_PHY_RATE_LORA_250K = 0x29, /**< Espressif-specific Long Range mode rate, 250 Kbps */
|
||||||
WIFI_PHY_RATE_LORA_500K = 0x2A, /**< 500 Kbps */
|
WIFI_PHY_RATE_LORA_500K = 0x2A, /**< Espressif-specific Long Range mode rate, 500 Kbps */
|
||||||
WIFI_PHY_RATE_MAX,
|
WIFI_PHY_RATE_MAX,
|
||||||
} wifi_phy_rate_t;
|
} wifi_phy_rate_t;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user