mirror of
https://github.com/espressif/esp-idf.git
synced 2025-07-30 02:37:19 +02:00
fix(wifi): fixed some wifi issues
1. fix(wifi/mesh): wait for child disconnect when mesh deinit 2. fix(wifi): fix wifi stop cost too much time 3. fix(clk): clear all lpclk source at clk init 4. fix(wifi): fixed scan and home channel change issues 5. fix(wifi):fix issues that in mplen clear and esp_wifi_set_mode 6. fix(wifi): fix qos encapsulated eapol issue 7. fix(wifi): fixed dhcp offer and dhcp ack data rates 8. fix(wifi): fix lmac_stop_hw_txq issue
This commit is contained in:
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* SPDX-FileCopyrightText: 2021-2023 Espressif Systems (Shanghai) CO LTD
|
||||
* SPDX-FileCopyrightText: 2021-2024 Espressif Systems (Shanghai) CO LTD
|
||||
*
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
@ -1635,9 +1635,9 @@ hal_mac_set_txq_invalid = 0x40001d60;
|
||||
hal_mac_txq_disable = 0x40001d64;
|
||||
hal_mac_is_txq_enabled = 0x40001d68;
|
||||
hal_mac_get_txq_pmd = 0x40001d6c;
|
||||
lmacDiscardFrameExchangeSequence = 0x40001d70;
|
||||
lmacDisableTransmit = 0x40001d74;
|
||||
lmacProcessTxTimeout = 0x40001d78;
|
||||
/*lmacDiscardFrameExchangeSequence = 0x40001d70;*/
|
||||
/*lmacDisableTransmit = 0x40001d74;*/
|
||||
/*lmacProcessTxTimeout = 0x40001d78;*/
|
||||
/*lmacProcessTxSuccess = 0x40001d7c;*/
|
||||
lmacProcessCollision = 0x40001d80;
|
||||
lmacProcessTxRtsError = 0x40001d84;
|
||||
@ -1669,7 +1669,7 @@ mac_last_rxbuf_init = 0x40001de8;
|
||||
hal_attenna_init = 0x40001dec;
|
||||
hal_timer_update_by_rtc = 0x40001df0;
|
||||
hal_coex_pti_init = 0x40001df4;
|
||||
lmac_stop_hw_txq = 0x40001df8;
|
||||
/*lmac_stop_hw_txq = 0x40001df8;*/
|
||||
ppDirectRecycleAmpdu = 0x40001dfc;
|
||||
esp_wifi_internal_set_rts = 0x40001e00;
|
||||
esp_wifi_internal_get_rts = 0x40001e04;
|
||||
|
Submodule components/esp_wifi/lib updated: 4457ec627e...1334b6d874
Reference in New Issue
Block a user