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
#defineWIFI_ROC_REQ 1 /**< Request remain on channel */
48
+
#defineWIFI_ROC_CANCEL 0 /**< Cancel remain on channel */
48
49
49
-
typedefenum {
50
-
WIFI_ROC_CANCEL, /**< Cancel remain on channel */
51
-
WIFI_ROC_REQ, /**< Request remain on channel */
52
-
} wifi_roc_t;
53
50
/**
54
51
* @brief Wi-Fi country policy
55
52
*/
@@ -244,7 +241,6 @@ typedef struct {
244
241
wifi_scan_channel_bitmap_tchannel_bitmap; /**< Channel bitmap for setting specific channels to be scanned.
245
242
Please note that the 'channel' parameter above needs to be set to 0 to allow scanning by bitmap.
246
243
Also, note that only allowed channels configured by wifi_country_t can be scanned. */
247
-
boolcoex_background_scan; /**< Enable it to scan return home channel under coexist */
248
244
} wifi_scan_config_t;
249
245
250
246
/**
@@ -567,7 +563,7 @@ typedef struct {
567
563
uint32_the_trig_mu_bmforming_partial_feedback_disabled: 1; /**< Whether to disable support the transmission of partial-bandwidth MU feedback in an HE TB sounding sequence. */
568
564
uint32_the_trig_cqi_feedback_disabled: 1; /**< Whether to disable support the transmission of CQI feedback in an HE TB sounding sequence. */
569
565
uint32_the_reserved: 22; /**< Reserved for future feature set */
570
-
uint8_tsae_h2e_identifier[SAE_H2E_IDENTIFIER_LEN]; /**< Password identifier for H2E. Strings null-terminated (length < SAE_H2E_IDENTIFIER_LEN) or non-null terminated (length = SAE_H2E_IDENTIFIER_LEN) are accepted. Non-null terminated string with 0xFF for full length of SAE_H2E_IDENTIFIER_LEN is not considered a valid identifier */
566
+
uint8_tsae_h2e_identifier[SAE_H2E_IDENTIFIER_LEN]; /**< Password identifier for H2E. this needs to be null terminated string */
uint32_twait_time_ms; /**< Duration to wait for on target channel */
818
-
wifi_action_rx_cb_trx_cb; /**< Rx Callback to receive any response */
819
-
uint8_top_id; /**< ID of this specific ROC operation provided by wifi driver */
820
-
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 */
821
-
} wifi_roc_req_t;
822
-
823
782
/**
824
783
* @brief FTM Initiator configuration
825
784
*
@@ -1277,32 +1236,21 @@ typedef struct {
1277
1236
#defineWIFI_STATIS_PS (1<<4) /**< Power save status */
1278
1237
#defineWIFI_STATIS_ALL (-1) /**< All status */
1279
1238
1280
-
/** Status codes for WIFI_EVENT_ACTION_TX_STATUS evt */
1281
-
/** There will be back to back events in success case TX_DONE and TX_DURATION_COMPLETED */
1282
-
typedefenum {
1283
-
WIFI_ACTION_TX_DONE=0, /**< ACTION_TX operation was completed successfully */
1284
-
WIFI_ACTION_TX_FAILED, /**< ACTION_TX operation failed during tx */
0 commit comments