mirror of
https://github.com/espressif/esp-idf.git
synced 2025-07-31 11:17:20 +02:00
Merge branch 'bugfix/fix_some_wifi_bugs_202502_v5.4' into 'release/v5.4'
fix(sniffer): fix channel in rx_ctrl is zero when using sniffer(Backport v5.4) See merge request espressif/esp-idf!37568
This commit is contained in:
@ -39,7 +39,7 @@ rcUpdateRate = 0x40001c9c;
|
||||
wDev_AppendRxBlocks = 0x40001cdc;
|
||||
//wDev_IndicateFrame = 0x40001cec;
|
||||
wDev_ProcessFiq = 0x40001d08;
|
||||
wDev_ProcessRxSucData = 0x40001d0c;
|
||||
/*wDev_ProcessRxSucData = 0x40001d0c;*/
|
||||
ppProcTxDone = 0x40001d1c;
|
||||
/*pm_tx_data_done_process = 0x40001d20;*/
|
||||
ppMapWaitTxq = 0x40001d28;
|
||||
|
@ -278,7 +278,7 @@ wdev_mac_special_reg_store = 0x40000f44;
|
||||
wdev_mac_wakeup = 0x40000f48;
|
||||
wdev_mac_sleep = 0x40000f4c;
|
||||
wDev_ProcessFiq = 0x40000f50;
|
||||
wDev_ProcessRxSucData = 0x40000f54;
|
||||
/*wDev_ProcessRxSucData = 0x40000f54;*/
|
||||
wdevProcessRxSucDataAll = 0x40000f58;
|
||||
wdev_csi_len_align = 0x40000f5c;
|
||||
wDev_IndicateBeaconMemoryFrame = 0x40000f60;
|
||||
|
@ -1647,6 +1647,7 @@ esp_err_t esp_wifi_sta_get_rssi(int *rssi);
|
||||
* @return
|
||||
* - ESP_OK: succeed
|
||||
* - ESP_ERR_WIFI_NOT_INIT: WiFi is not initialized by esp_wifi_init
|
||||
* - ESP_ERR_WIFI_NOT_STARTED: WiFi is not started by esp_wifi_start
|
||||
* - ESP_ERR_INVALID_ARG: invalid argument
|
||||
*/
|
||||
esp_err_t esp_wifi_set_band(wifi_band_t band);
|
||||
|
Submodule components/esp_wifi/lib updated: 440d35bf2f...3b8d9c4049
Reference in New Issue
Block a user