Skip to content

Commit caa020b

Browse files
authored
Merge branch 'espressif:release/v5.4' into release/v5.4
2 parents 3138bf0 + 2793457 commit caa020b

File tree

10 files changed

+38
-16
lines changed

10 files changed

+38
-16
lines changed

.gitlab/ci/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ pytest_build_system_macos:
237237
PYENV_VERSION: "3.8"
238238
# CCACHE_DIR: "/cache/idf_ccache". On macOS, you cannot write to this folder due to insufficient permissions.
239239
CCACHE_DIR: "" # ccache will use "$HOME/Library/Caches/ccache".
240-
CCACHE_MAXSIZE: "5G" # To preserve the limited Macbook storage. CCACHE automatically prunes old caches to fit the set limit.
240+
241241
build_docker:
242242
extends:
243243
- .before_script:minimal

components/bt/host/bluedroid/btc/profile/std/avrc/btc_avrc.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1673,9 +1673,11 @@ void btc_avrc_get_profile_status(esp_avrc_profile_status_t *param)
16731673
if (btc_avrc_ct_init_p()) {
16741674
param->avrc_ct_inited = true;
16751675
}
1676+
#if BTC_AV_CA_INCLUDED
16761677
if (btc_rc_cb.rc_cover_art_connected) {
16771678
param->ct_cover_art_conn_num++;
16781679
}
1680+
#endif
16791681
}
16801682
}
16811683

components/esp-tls/Kconfig

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,4 +114,12 @@ menu "ESP-TLS"
114114
Enable a fuller set of OCSP checks: checking revocation status of intermediate certificates,
115115
optional fallbacks to CRLs, etc.
116116

117+
config ESP_TLS_DYN_BUF_STRATEGY_SUPPORTED
118+
bool
119+
default y
120+
help
121+
Enable support for dynamic buffer strategy for ESP-TLS. This is the hidden config option kept
122+
for external components like OTA, to find out whether the dynamic buffer strategy is supported
123+
for particular ESP-IDF version.
124+
117125
endmenu

components/esp_rom/esp32c2/ld/esp32c2.rom.eco4.ld

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ s_trans_id = 0x3fcdfac4;
129129
***************************************/
130130

131131
/* Functions */
132-
coex_core_event_duration_get = 0x40002178;
132+
/* coex_core_event_duration_get = 0x40002178; */
133133
/* coex_core_timer_idx_get = 0x4000218c; */
134134
coex_hw_timer_tick_get = 0x400021b8;
135135

components/openthread/include/esp_openthread_netif_glue.h

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,17 @@ esp_netif_t *esp_openthread_get_netif(void);
7676
*/
7777
void esp_openthread_register_meshcop_e_handler(esp_event_handler_t handler, bool for_publish);
7878

79+
/**
80+
* @brief This function judges the target address is openthread mesh local or not.
81+
*
82+
* @param[in] address The address.
83+
*
84+
* @return
85+
* - True if the address is openthread mesh local, otherwise false
86+
*
87+
*/
88+
bool is_openthread_internal_mesh_local_addr(const otIp6Address *address);
89+
7990
#ifdef __cplusplus
8091
}
8192
#endif

components/openthread/private_include/esp_openthread_netif_glue_priv.h

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -36,17 +36,6 @@ void esp_openthread_netif_glue_update(esp_openthread_mainloop_context_t *mainloo
3636
*/
3737
esp_err_t esp_openthread_netif_glue_process(otInstance *instance, const esp_openthread_mainloop_context_t *mainloop);
3838

39-
/**
40-
* @brief This function judges the target address is openthread mesh local or not.
41-
*
42-
* @param[in] address The address.
43-
*
44-
* @return
45-
* - True if the address is openthread mesh local, otherwise false
46-
*
47-
*/
48-
bool is_openthread_internal_mesh_local_addr(const otIp6Address *address);
49-
5039
#ifdef __cplusplus
5140
}
5241
#endif
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Override some defaults so BT stack is enabled and
2+
# Classic BT is enabled and BT_DRAM_RELEASE is disabled
3+
CONFIG_BT_ENABLED=y
4+
CONFIG_BTDM_CTRL_MODE_BLE_ONLY=n
5+
CONFIG_BTDM_CTRL_MODE_BR_EDR_ONLY=y
6+
CONFIG_BTDM_CTRL_MODE_BTDM=n
7+
CONFIG_BT_BLUEDROID_ENABLED=y
8+
CONFIG_BT_CLASSIC_ENABLED=y
9+
CONFIG_BT_A2DP_ENABLE=y
10+
CONFIG_BT_AVRCP_CT_COVER_ART_ENABLED=n
11+
CONFIG_EXAMPLE_AVRCP_CT_COVER_ART_ENABLE=n
12+
CONFIG_DAC_DMA_AUTO_16BIT_ALIGN=n

examples/wifi/iperf/sdkconfig.defaults.esp32c2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ CONFIG_ESP_WIFI_TX_BA_WIN=16
99
CONFIG_ESP_WIFI_AMPDU_RX_ENABLED=y
1010
CONFIG_ESP_WIFI_RX_BA_WIN=14
1111

12-
CONFIG_LWIP_TCP_SND_BUF_DEFAULT=11520
12+
CONFIG_LWIP_TCP_SND_BUF_DEFAULT=7200
1313
CONFIG_LWIP_TCP_WND_DEFAULT=11520
1414
CONFIG_LWIP_TCP_RECVMBOX_SIZE=32
1515
CONFIG_LWIP_UDP_RECVMBOX_SIZE=32

examples/wifi/iperf/sdkconfig.defaults.esp32s2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ CONFIG_ESP_WIFI_TX_BA_WIN=16
99
CONFIG_ESP_WIFI_AMPDU_RX_ENABLED=y
1010
CONFIG_ESP_WIFI_RX_BA_WIN=16
1111

12-
CONFIG_LWIP_TCP_SND_BUF_DEFAULT=28000
12+
CONFIG_LWIP_TCP_SND_BUF_DEFAULT=17280
1313
CONFIG_LWIP_TCP_WND_DEFAULT=28000
1414
CONFIG_LWIP_TCP_RECVMBOX_SIZE=32
1515
CONFIG_LWIP_UDP_RECVMBOX_SIZE=32

0 commit comments

Comments
 (0)