You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
uint32_twait_time_ms; /**< Duration to wait for on target channel */
817
+
wifi_action_rx_cb_trx_cb; /**< Rx Callback to receive any response */
818
+
uint8_top_id; /**< ID of this specific ROC operation provided by wifi driver */
819
+
wifi_action_roc_done_cb_tdone_cb; /**< Callback to function that will be called upon ROC done. If assigned, WIFI_EVENT_ROC_DONE event will not be posted */
820
+
} wifi_roc_req_t;
821
+
782
822
/**
783
823
* @brief FTM Initiator configuration
784
824
*
@@ -1236,21 +1276,32 @@ typedef struct {
1236
1276
#defineWIFI_STATIS_PS (1<<4) /**< Power save status */
1237
1277
#defineWIFI_STATIS_ALL (-1) /**< All status */
1238
1278
1239
-
/**
1240
-
* @brief Argument structure for WIFI_EVENT_ACTION_TX_STATUS event
1241
-
*/
1279
+
/** Status codes for WIFI_EVENT_ACTION_TX_STATUS evt */
1280
+
/** There will be back to back events in success case TX_DONE and TX_DURATION_COMPLETED */
1281
+
typedefenum {
1282
+
WIFI_ACTION_TX_DONE=0, /**< ACTION_TX operation was completed successfully */
1283
+
WIFI_ACTION_TX_FAILED, /**< ACTION_TX operation failed during tx */
0 commit comments