mirror of
https://github.com/espressif/ESP8266_RTOS_SDK.git
synced 2025-09-21 22:06:46 +08:00
Merge branch 'feature/add_esp_wifi_set_promiscuous_data_len_api' into 'master'
feat(esp8266): modify notes of wifi_promiscuous_pkt_t structure See merge request sdk/ESP8266_RTOS_SDK!490
This commit is contained in:
@ -330,7 +330,9 @@ typedef struct {
|
|||||||
*/
|
*/
|
||||||
typedef struct {
|
typedef struct {
|
||||||
wifi_pkt_rx_ctrl_t rx_ctrl; /**< metadata header */
|
wifi_pkt_rx_ctrl_t rx_ctrl; /**< metadata header */
|
||||||
uint8_t payload[0]; /**< Data or management payload. Length of payload is described by rx_ctrl.legacy_length or rx_ctrl.HT_length. Type of content determined by packet type argument of callback. */
|
uint8_t payload[0]; /**< Data or management frame payload. Length of payload is
|
||||||
|
min(112, (pkt->rx_ctrl.sig_mode ? pkt->rx_ctrl.HT_length : pkt->rx_ctrl.legacy_length))
|
||||||
|
Type of content determined by packet type argument of callback. */
|
||||||
} wifi_promiscuous_pkt_t;
|
} wifi_promiscuous_pkt_t;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Reference in New Issue
Block a user