mirror of
https://github.com/espressif/esp-idf.git
synced 2025-10-03 02:20:57 +02:00
Merge branch 'bugfix/fix_open_mode_rx_fragment_fail_issue_v5.4' into 'release/v5.4'
fix(wifi): fix open mode rx fragment fail issue(Backport v5.4) See merge request espressif/esp-idf!41068
This commit is contained in:
@@ -53,7 +53,7 @@ lmacInit = 0x40001dc8;
|
|||||||
hal_init = 0x40001dd0;
|
hal_init = 0x40001dd0;
|
||||||
mac_txrx_init = 0x40001de0;
|
mac_txrx_init = 0x40001de0;
|
||||||
lmac_stop_hw_txq = 0x40001df8;
|
lmac_stop_hw_txq = 0x40001df8;
|
||||||
ppTxFragmentProc = 0x40001e08;
|
/*ppTxFragmentProc = 0x40001e08;*/
|
||||||
esf_buf_setup = 0x40001e0c;
|
esf_buf_setup = 0x40001e0c;
|
||||||
hal_crypto_set_key_entry = 0x40001e18;
|
hal_crypto_set_key_entry = 0x40001e18;
|
||||||
pm_start = 0x40001e34;
|
pm_start = 0x40001e34;
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* SPDX-FileCopyrightText: 2015-2024 Espressif Systems (Shanghai) CO LTD
|
* SPDX-FileCopyrightText: 2015-2025 Espressif Systems (Shanghai) CO LTD
|
||||||
*
|
*
|
||||||
* SPDX-License-Identifier: Apache-2.0
|
* SPDX-License-Identifier: Apache-2.0
|
||||||
*/
|
*/
|
||||||
@@ -777,6 +777,11 @@ esp_err_t esp_wifi_connect_internal(void);
|
|||||||
*/
|
*/
|
||||||
esp_err_t esp_wifi_disconnect_internal(void);
|
esp_err_t esp_wifi_disconnect_internal(void);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief This API is not context safe and enable easy fragment just for internal test only.
|
||||||
|
*/
|
||||||
|
void esp_wifi_enable_easy_fragment(bool enable);
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
Submodule components/esp_wifi/lib updated: f52df9e2fa...d1411ce4c6
Reference in New Issue
Block a user