-
Notifications
You must be signed in to change notification settings - Fork 845
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'feature/update_idf_version' into 'master'
feat: Upgraded esp-idf version to 64849cb7 (commit after v5.1.5 tag) See merge request application/esp-at!1689
- Loading branch information
Showing
99 changed files
with
192 additions
and
2,328 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
ESP32: 239a73b | ||
ESP32C3: 239a73b | ||
ESP32C2: 239a73b | ||
ESP32C5: 239a73b | ||
ESP32C6: 239a73b | ||
ESP32S2: 239a73b | ||
ESP32: 752008f | ||
ESP32C3: 752008f | ||
ESP32C2: 752008f | ||
ESP32C5: 8834929 | ||
ESP32C6: 752008f | ||
ESP32S2: 752008f |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
branch:release/v5.0 | ||
commit:bcca689866db3dfda47f77670bf8df2a7ec94721 | ||
branch:release/v5.1 | ||
commit:64849cb7039a93b7b3a4ad8e8da328fa9c09c5e7 | ||
repository:https://github.com/espressif/esp-idf.git |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
branch:release/v5.0 | ||
commit:bcca689866db3dfda47f77670bf8df2a7ec94721 | ||
branch:release/v5.1 | ||
commit:64849cb7039a93b7b3a4ad8e8da328fa9c09c5e7 | ||
repository:https://github.com/espressif/esp-idf.git |
40 changes: 0 additions & 40 deletions
40
module_config/module_esp32-d2wd/patch/esp_tls_parse_ecc_key.patch
This file was deleted.
Oops, something went wrong.
123 changes: 0 additions & 123 deletions
123
module_config/module_esp32-d2wd/patch/fatfs_generation.patch
This file was deleted.
Oops, something went wrong.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,21 @@ | ||
From a41350b35c58721084eccf43993366335c0bb34d Mon Sep 17 00:00:00 2001 | ||
From: xiewenxiang <[email protected]> | ||
Date: Tue, 17 Dec 2024 10:13:28 +0800 | ||
Subject: [PATCH] modify bluedroid conn timeout | ||
|
||
--- | ||
components/bt/host/bluedroid/stack/l2cap/l2c_ble.c | 10 ++++++---- | ||
1 file changed, 6 insertions(+), 4 deletions(-) | ||
|
||
diff --git a/components/bt/host/bluedroid/stack/l2cap/l2c_ble.c b/components/bt/host/bluedroid/stack/l2cap/l2c_ble.c | ||
index 4e6c8534ec..fa7a877491 100644 | ||
index 36f91cfe08..69f7038696 100644 | ||
--- a/components/bt/host/bluedroid/stack/l2cap/l2c_ble.c | ||
+++ b/components/bt/host/bluedroid/stack/l2cap/l2c_ble.c | ||
@@ -950,16 +950,19 @@ BOOLEAN l2cble_init_direct_conn (tL2C_LCB *p_lcb) | ||
L2CAP_TRACE_ERROR("initate direct connection fail, topology limitation"); | ||
@@ -952,16 +952,18 @@ BOOLEAN l2cble_init_direct_conn (tL2C_LCB *p_lcb) | ||
L2CAP_TRACE_ERROR("initiate direct connection fail, topology limitation"); | ||
return FALSE; | ||
} | ||
- uint32_t link_timeout = L2CAP_BLE_LINK_CONNECT_TOUT; | ||
+ | ||
+ extern int32_t bluedroid_conn_wait_time; | ||
+ | ||
+ uint32_t link_timeout = bluedroid_conn_wait_time; | ||
|
@@ -26,3 +34,6 @@ index 4e6c8534ec..fa7a877491 100644 | |
} | ||
} | ||
|
||
-- | ||
2.25.1 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,9 @@ | ||
; Add your patches to the section below | ||
|
||
[esp_tls_parse_ecc_key.patch] | ||
path = esp-idf | ||
note = "Fixed an issue where esp-tls is unable to parse ECC keys" | ||
|
||
[fatfs_generation.patch] | ||
path = esp-idf | ||
note = "Fixed an issue where data read after writing fatfs partition more than 63 times might be incorrect" | ||
|
||
[support_ext_partition.patch] | ||
path = esp-idf | ||
note = "[IDF-9560] Support to use partition table outside of the project directory" | ||
|
||
[modify_bluedroid_conn_timeout.patch] | ||
path = esp-idf | ||
note = "[ESPAT-1972] Support to modify the timeout period for BLE connections" | ||
|
||
[libbtdm_app.a] | ||
path = esp-idf/components/bt/controller/lib_esp32/esp32/libbtdm_app.a | ||
note = "[ESPAT-1962] Fixed ble disconnection fail issue" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
branch:release/v5.0 | ||
commit:bcca689866db3dfda47f77670bf8df2a7ec94721 | ||
branch:release/v5.1 | ||
commit:64849cb7039a93b7b3a4ad8e8da328fa9c09c5e7 | ||
repository:https://github.com/espressif/esp-idf.git |
40 changes: 0 additions & 40 deletions
40
module_config/module_esp32-sdio/patch/esp_tls_parse_ecc_key.patch
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.