Skip to content

Commit

Permalink
Merge branch 'bugfix/sta_sa_query_process' into 'master'
Browse files Browse the repository at this point in the history
esp_wifi: Improve station SA query procedure handling

Closes WIFI-5525

See merge request espressif/esp-idf!22686
  • Loading branch information
jack0c committed Mar 21, 2023
2 parents e32083c + 56dd04c commit 4c75ad9
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
8 changes: 4 additions & 4 deletions components/esp_rom/esp32c2/ld/esp32c2.rom.ld
Original file line number Diff line number Diff line change
Expand Up @@ -1982,7 +1982,7 @@ ieee80211_alloc_deauth = 0x40002124;
ieee80211_send_proberesp = 0x40002128;
ieee80211_getcapinfo = 0x40002130;
sta_rx_csa = 0x40002134;
sta_recv_sa_query_resp = 0x40002144;
/* sta_recv_sa_query_resp = 0x40002144; */
ieee80211_set_max_rate = 0x4000214c;
ic_set_sta = 0x40002150;
ieee80211_parse_wpa = 0x40002158;
Expand All @@ -2009,13 +2009,13 @@ s_wifi_task_hdl = 0x3fcdfaec;
in_rssi_adjust = 0x3fcdfae8;
rssi_saved = 0x3fcdfae0;
rssi_index = 0x3fcdfadc;
s_sa_query_retries = 0x3fcdfad8;
s_sa_query_success = 0x3fcdfad5;
/* s_sa_query_retries = 0x3fcdfad8; */
/* s_sa_query_success = 0x3fcdfad5; */
g_sta_connected_flag = 0x3fcdfad4;
wpa_crypto_funcs_ptr = 0x3fcdfad0;
s_netstack_ref = 0x3fcdfacc;
sta_csa_timer_ptr = 0x3fcdfac8;
s_trans_id = 0x3fcdfac4;
/* s_trans_id = 0x3fcdfac4; */


/***************************************
Expand Down
1 change: 1 addition & 0 deletions components/esp_wifi/include/esp_wifi_types.h
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,7 @@ typedef enum {
WIFI_REASON_AP_TSF_RESET = 206,
WIFI_REASON_ROAMING = 207,
WIFI_REASON_ASSOC_COMEBACK_TIME_TOO_LONG = 208,
WIFI_REASON_SA_QUERY_TIMEOUT = 209,
} wifi_err_reason_t;

typedef enum {
Expand Down

0 comments on commit 4c75ad9

Please sign in to comment.