mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-28 21:33:32 +00:00
feat(wifi): add itwt teardown status
This commit is contained in:
@@ -302,9 +302,18 @@ typedef struct {
|
||||
uint64_t target_wake_time; /**< TWT SP start time */
|
||||
} wifi_event_sta_itwt_setup_t;
|
||||
|
||||
/**
|
||||
* @brief iTWT teardown status
|
||||
*/
|
||||
typedef enum {
|
||||
ITWT_TEARDOWN_FAIL, /**< station sends teardown frame fail */
|
||||
ITWT_TEARDOWN_SUCCESS, /**< 1) station successfully sends teardown frame to AP; 2) station receives teardown frame from AP */
|
||||
} wifi_itwt_teardown_status_t;
|
||||
|
||||
/** Argument structure for WIFI_EVENT_TWT_TEARDOWN event */
|
||||
typedef struct {
|
||||
uint8_t flow_id; /**< flow id */
|
||||
wifi_itwt_teardown_status_t status; /**< itwt teardown status */
|
||||
} wifi_event_sta_itwt_teardown_t;
|
||||
|
||||
/**
|
||||
|
Submodule components/esp_wifi/lib updated: 6aa93ec85d...321823002f
Reference in New Issue
Block a user