Skip to content

Commit e1cc387

Browse files
committed
IDF release/v4.4 cebb1b3068
1 parent 8b9c231 commit e1cc387

File tree

63 files changed

+169
-124
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

63 files changed

+169
-124
lines changed

platform.txt

+4-4
Large diffs are not rendered by default.

tools/platformio-build-esp32.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -334,7 +334,7 @@
334334
"UNITY_INCLUDE_CONFIG_H",
335335
"WITH_POSIX",
336336
"_GNU_SOURCE",
337-
("IDF_VER", '\\"v4.4.7-44-gc4ce15b33d-dirty\\"'),
337+
("IDF_VER", '\\"v4.4.7-55-gcebb1b3068-dirty\\"'),
338338
"ESP_PLATFORM",
339339
"_POSIX_READER_WRITER_LOCKS",
340340
"ARDUINO_ARCH_ESP32",

tools/platformio-build-esp32c3.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -331,7 +331,7 @@
331331
"UNITY_INCLUDE_CONFIG_H",
332332
"WITH_POSIX",
333333
"_GNU_SOURCE",
334-
("IDF_VER", '\\"v4.4.7-44-gc4ce15b33d-dirty\\"'),
334+
("IDF_VER", '\\"v4.4.7-55-gcebb1b3068-dirty\\"'),
335335
"ESP_PLATFORM",
336336
"_POSIX_READER_WRITER_LOCKS",
337337
"ARDUINO_ARCH_ESP32",

tools/platformio-build-esp32s2.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,7 @@
317317
"UNITY_INCLUDE_CONFIG_H",
318318
"WITH_POSIX",
319319
"_GNU_SOURCE",
320-
("IDF_VER", '\\"v4.4.7-44-gc4ce15b33d-dirty\\"'),
320+
("IDF_VER", '\\"v4.4.7-55-gcebb1b3068-dirty\\"'),
321321
"ESP_PLATFORM",
322322
"_POSIX_READER_WRITER_LOCKS",
323323
"ARDUINO_ARCH_ESP32",

tools/platformio-build-esp32s3.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,7 @@
333333
"UNITY_INCLUDE_CONFIG_H",
334334
"WITH_POSIX",
335335
"_GNU_SOURCE",
336-
("IDF_VER", '\\"v4.4.7-44-gc4ce15b33d-dirty\\"'),
336+
("IDF_VER", '\\"v4.4.7-55-gcebb1b3068-dirty\\"'),
337337
"ESP_PLATFORM",
338338
"_POSIX_READER_WRITER_LOCKS",
339339
"ARDUINO_ARCH_ESP32",

tools/sdk/esp32/dio_qspi/include/sdkconfig.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -845,5 +845,5 @@
845845
#define CONFIG_ULP_COPROC_ENABLED CONFIG_ESP32_ULP_COPROC_ENABLED
846846
#define CONFIG_ULP_COPROC_RESERVE_MEM CONFIG_ESP32_ULP_COPROC_RESERVE_MEM
847847
#define CONFIG_WARN_WRITE_STRINGS CONFIG_COMPILER_WARN_WRITE_STRINGS
848-
#define CONFIG_ARDUINO_IDF_COMMIT "c4ce15b33d"
848+
#define CONFIG_ARDUINO_IDF_COMMIT "cebb1b3068"
849849
#define CONFIG_ARDUINO_IDF_BRANCH "release/v4.4"

tools/sdk/esp32/dout_qspi/include/sdkconfig.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -845,5 +845,5 @@
845845
#define CONFIG_ULP_COPROC_ENABLED CONFIG_ESP32_ULP_COPROC_ENABLED
846846
#define CONFIG_ULP_COPROC_RESERVE_MEM CONFIG_ESP32_ULP_COPROC_RESERVE_MEM
847847
#define CONFIG_WARN_WRITE_STRINGS CONFIG_COMPILER_WARN_WRITE_STRINGS
848-
#define CONFIG_ARDUINO_IDF_COMMIT "c4ce15b33d"
848+
#define CONFIG_ARDUINO_IDF_COMMIT "cebb1b3068"
849849
#define CONFIG_ARDUINO_IDF_BRANCH "release/v4.4"

tools/sdk/esp32/include/bt/common/btc/profile/esp/blufi/include/blufi_int.h

+17-15
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,19 @@
1-
// Copyright 2015-2016 Espressif Systems (Shanghai) PTE LTD
2-
//
3-
// Licensed under the Apache License, Version 2.0 (the "License");
4-
// you may not use this file except in compliance with the License.
5-
// You may obtain a copy of the License at
6-
7-
// http://www.apache.org/licenses/LICENSE-2.0
8-
//
9-
// Unless required by applicable law or agreed to in writing, software
10-
// distributed under the License is distributed on an "AS IS" BASIS,
11-
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12-
// See the License for the specific language governing permissions and
13-
// limitations under the License.
1+
/*
2+
* SPDX-FileCopyrightText: 2015-2024 Espressif Systems (Shanghai) CO LTD
3+
*
4+
* SPDX-License-Identifier: Apache-2.0
5+
*/
146

157
#ifndef __BLUFI_INT_H__
168
#define __BLUFI_INT_H__
179

1810
#include "btc/btc_task.h"
1911
#include "esp_blufi_api.h"
12+
13+
#ifdef __cplusplus
14+
extern "C" {
15+
#endif
16+
2017
#if (BLUFI_INCLUDED == TRUE)
2118

2219
#define BTC_BLUFI_GREAT_VER 0x01 //Version + Subversion
@@ -201,5 +198,10 @@ void btc_blufi_cb_deep_copy(btc_msg_t *msg, void *p_dest, void *p_src);
201198

202199
void btc_blufi_cb_deep_free(btc_msg_t *msg);
203200

204-
#endif /* __BLUFI_INT_H__ */
205-
#endif ///BLUFI_INCLUDED == TRUE
201+
#endif ///BLUFI_INCLUDED == TRUE
202+
203+
#ifdef __cplusplus
204+
}
205+
#endif
206+
207+
#endif /* __BLUFI_INT_H__ */

tools/sdk/esp32/include/bt/common/btc/profile/esp/blufi/include/esp_blufi.h

+13
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
/*
2+
* SPDX-FileCopyrightText: 2015-2024 Espressif Systems (Shanghai) CO LTD
3+
*
4+
* SPDX-License-Identifier: Apache-2.0
5+
*/
6+
17
#ifndef __ESP_BLUFI_H__
28
#define __ESP_BLUFI_H__
39

@@ -13,6 +19,10 @@
1319
#include "esp_gap_ble_api.h"
1420
#endif
1521

22+
#ifdef __cplusplus
23+
extern "C" {
24+
#endif
25+
1626
#define BLUFI_APP_UUID 0xFFFF
1727
#define BLUFI_DEVICE_NAME "BLUFI_DEVICE"
1828

@@ -74,4 +84,7 @@ void esp_blufi_adv_start(void);
7484

7585
void esp_blufi_send_encap(void *arg);
7686

87+
#ifdef __cplusplus
88+
}
89+
#endif
7790
#endif/* _ESP_BLUFI_ */

tools/sdk/esp32/include/bt/common/btc/profile/esp/include/btc_blufi_prf.h

+13-13
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,8 @@
1-
// Copyright 2015-2016 Espressif Systems (Shanghai) PTE LTD
2-
//
3-
// Licensed under the Apache License, Version 2.0 (the "License");
4-
// you may not use this file except in compliance with the License.
5-
// You may obtain a copy of the License at
6-
7-
// http://www.apache.org/licenses/LICENSE-2.0
8-
//
9-
// Unless required by applicable law or agreed to in writing, software
10-
// distributed under the License is distributed on an "AS IS" BASIS,
11-
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12-
// See the License for the specific language governing permissions and
13-
// limitations under the License.
1+
/*
2+
* SPDX-FileCopyrightText: 2015-2024 Espressif Systems (Shanghai) CO LTD
3+
*
4+
* SPDX-License-Identifier: Apache-2.0
5+
*/
146

157
#ifndef __BTC_BLUFI_PRF_H__
168
#define __BTC_BLUFI_PRF_H__
@@ -29,6 +21,11 @@
2921
#define ESP_BLUFI_SUCCESS 0x00
3022
#endif
3123

24+
25+
#ifdef __cplusplus
26+
extern "C" {
27+
#endif
28+
3229
#define BT_BD_ADDR_STR "%02x:%02x:%02x:%02x:%02x:%02x"
3330
#define BT_BD_ADDR_HEX(addr) addr[0], addr[1], addr[2], addr[3], addr[4], addr[5]
3431

@@ -108,4 +105,7 @@ void btc_blufi_call_deep_free(btc_msg_t *msg);
108105

109106
uint16_t btc_blufi_get_version(void);
110107

108+
#ifdef __cplusplus
109+
}
110+
#endif
111111
#endif /* __BTC_BLUFI_PRF_H__ */

tools/sdk/esp32/include/bt/host/bluedroid/api/include/api/esp_gap_ble_api.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -896,7 +896,7 @@ typedef struct {
896896
esp_ble_gap_ext_adv_data_status_t data_status; /*!< data type */
897897
uint8_t adv_data_len; /*!< extend advertising data length */
898898
uint8_t adv_data[251]; /*!< extend advertising data */
899-
} esp_ble_gap_ext_adv_reprot_t;
899+
} esp_ble_gap_ext_adv_report_t;
900900

901901
/**
902902
* @brief periodic adv report parameters
@@ -1340,7 +1340,7 @@ typedef union {
13401340
* @brief ESP_GAP_BLE_EXT_ADV_REPORT_EVT
13411341
*/
13421342
struct ble_ext_adv_report_param {
1343-
esp_ble_gap_ext_adv_reprot_t params; /*!< extend advertising report parameters */
1343+
esp_ble_gap_ext_adv_report_t params; /*!< extend advertising report parameters */
13441344
} ext_adv_report; /*!< Event parameter of ESP_GAP_BLE_EXT_ADV_REPORT_EVT */
13451345
/**
13461346
* @brief ESP_GAP_BLE_PERIODIC_ADV_REPORT_EVT

tools/sdk/esp32/ld/libbtdm_app.a

100755100644
4.22 KB
Binary file not shown.

tools/sdk/esp32/lib/libapp_update.a

0 Bytes
Binary file not shown.

tools/sdk/esp32/lib/libbt.a

1.85 KB
Binary file not shown.

tools/sdk/esp32/lib/libesp_system.a

0 Bytes
Binary file not shown.

tools/sdk/esp32/lib/libprotocomm.a

0 Bytes
Binary file not shown.

tools/sdk/esp32/qio_qspi/include/sdkconfig.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -845,5 +845,5 @@
845845
#define CONFIG_ULP_COPROC_ENABLED CONFIG_ESP32_ULP_COPROC_ENABLED
846846
#define CONFIG_ULP_COPROC_RESERVE_MEM CONFIG_ESP32_ULP_COPROC_RESERVE_MEM
847847
#define CONFIG_WARN_WRITE_STRINGS CONFIG_COMPILER_WARN_WRITE_STRINGS
848-
#define CONFIG_ARDUINO_IDF_COMMIT "c4ce15b33d"
848+
#define CONFIG_ARDUINO_IDF_COMMIT "cebb1b3068"
849849
#define CONFIG_ARDUINO_IDF_BRANCH "release/v4.4"

tools/sdk/esp32/qout_qspi/include/sdkconfig.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -845,5 +845,5 @@
845845
#define CONFIG_ULP_COPROC_ENABLED CONFIG_ESP32_ULP_COPROC_ENABLED
846846
#define CONFIG_ULP_COPROC_RESERVE_MEM CONFIG_ESP32_ULP_COPROC_RESERVE_MEM
847847
#define CONFIG_WARN_WRITE_STRINGS CONFIG_COMPILER_WARN_WRITE_STRINGS
848-
#define CONFIG_ARDUINO_IDF_COMMIT "c4ce15b33d"
848+
#define CONFIG_ARDUINO_IDF_COMMIT "cebb1b3068"
849849
#define CONFIG_ARDUINO_IDF_BRANCH "release/v4.4"

tools/sdk/esp32c3/dio_qspi/include/sdkconfig.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -849,5 +849,5 @@
849849
#define CONFIG_TOOLPREFIX CONFIG_SDK_TOOLPREFIX
850850
#define CONFIG_UDP_RECVMBOX_SIZE CONFIG_LWIP_UDP_RECVMBOX_SIZE
851851
#define CONFIG_WARN_WRITE_STRINGS CONFIG_COMPILER_WARN_WRITE_STRINGS
852-
#define CONFIG_ARDUINO_IDF_COMMIT "c4ce15b33d"
852+
#define CONFIG_ARDUINO_IDF_COMMIT "cebb1b3068"
853853
#define CONFIG_ARDUINO_IDF_BRANCH "release/v4.4"

tools/sdk/esp32c3/dout_qspi/include/sdkconfig.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -849,5 +849,5 @@
849849
#define CONFIG_TOOLPREFIX CONFIG_SDK_TOOLPREFIX
850850
#define CONFIG_UDP_RECVMBOX_SIZE CONFIG_LWIP_UDP_RECVMBOX_SIZE
851851
#define CONFIG_WARN_WRITE_STRINGS CONFIG_COMPILER_WARN_WRITE_STRINGS
852-
#define CONFIG_ARDUINO_IDF_COMMIT "c4ce15b33d"
852+
#define CONFIG_ARDUINO_IDF_COMMIT "cebb1b3068"
853853
#define CONFIG_ARDUINO_IDF_BRANCH "release/v4.4"

tools/sdk/esp32c3/include/bt/common/btc/profile/esp/blufi/include/blufi_int.h

+17-15
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,19 @@
1-
// Copyright 2015-2016 Espressif Systems (Shanghai) PTE LTD
2-
//
3-
// Licensed under the Apache License, Version 2.0 (the "License");
4-
// you may not use this file except in compliance with the License.
5-
// You may obtain a copy of the License at
6-
7-
// http://www.apache.org/licenses/LICENSE-2.0
8-
//
9-
// Unless required by applicable law or agreed to in writing, software
10-
// distributed under the License is distributed on an "AS IS" BASIS,
11-
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12-
// See the License for the specific language governing permissions and
13-
// limitations under the License.
1+
/*
2+
* SPDX-FileCopyrightText: 2015-2024 Espressif Systems (Shanghai) CO LTD
3+
*
4+
* SPDX-License-Identifier: Apache-2.0
5+
*/
146

157
#ifndef __BLUFI_INT_H__
168
#define __BLUFI_INT_H__
179

1810
#include "btc/btc_task.h"
1911
#include "esp_blufi_api.h"
12+
13+
#ifdef __cplusplus
14+
extern "C" {
15+
#endif
16+
2017
#if (BLUFI_INCLUDED == TRUE)
2118

2219
#define BTC_BLUFI_GREAT_VER 0x01 //Version + Subversion
@@ -201,5 +198,10 @@ void btc_blufi_cb_deep_copy(btc_msg_t *msg, void *p_dest, void *p_src);
201198

202199
void btc_blufi_cb_deep_free(btc_msg_t *msg);
203200

204-
#endif /* __BLUFI_INT_H__ */
205-
#endif ///BLUFI_INCLUDED == TRUE
201+
#endif ///BLUFI_INCLUDED == TRUE
202+
203+
#ifdef __cplusplus
204+
}
205+
#endif
206+
207+
#endif /* __BLUFI_INT_H__ */

tools/sdk/esp32c3/include/bt/common/btc/profile/esp/blufi/include/esp_blufi.h

+13
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
/*
2+
* SPDX-FileCopyrightText: 2015-2024 Espressif Systems (Shanghai) CO LTD
3+
*
4+
* SPDX-License-Identifier: Apache-2.0
5+
*/
6+
17
#ifndef __ESP_BLUFI_H__
28
#define __ESP_BLUFI_H__
39

@@ -13,6 +19,10 @@
1319
#include "esp_gap_ble_api.h"
1420
#endif
1521

22+
#ifdef __cplusplus
23+
extern "C" {
24+
#endif
25+
1626
#define BLUFI_APP_UUID 0xFFFF
1727
#define BLUFI_DEVICE_NAME "BLUFI_DEVICE"
1828

@@ -74,4 +84,7 @@ void esp_blufi_adv_start(void);
7484

7585
void esp_blufi_send_encap(void *arg);
7686

87+
#ifdef __cplusplus
88+
}
89+
#endif
7790
#endif/* _ESP_BLUFI_ */

tools/sdk/esp32c3/include/bt/common/btc/profile/esp/include/btc_blufi_prf.h

+13-13
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,8 @@
1-
// Copyright 2015-2016 Espressif Systems (Shanghai) PTE LTD
2-
//
3-
// Licensed under the Apache License, Version 2.0 (the "License");
4-
// you may not use this file except in compliance with the License.
5-
// You may obtain a copy of the License at
6-
7-
// http://www.apache.org/licenses/LICENSE-2.0
8-
//
9-
// Unless required by applicable law or agreed to in writing, software
10-
// distributed under the License is distributed on an "AS IS" BASIS,
11-
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12-
// See the License for the specific language governing permissions and
13-
// limitations under the License.
1+
/*
2+
* SPDX-FileCopyrightText: 2015-2024 Espressif Systems (Shanghai) CO LTD
3+
*
4+
* SPDX-License-Identifier: Apache-2.0
5+
*/
146

157
#ifndef __BTC_BLUFI_PRF_H__
168
#define __BTC_BLUFI_PRF_H__
@@ -29,6 +21,11 @@
2921
#define ESP_BLUFI_SUCCESS 0x00
3022
#endif
3123

24+
25+
#ifdef __cplusplus
26+
extern "C" {
27+
#endif
28+
3229
#define BT_BD_ADDR_STR "%02x:%02x:%02x:%02x:%02x:%02x"
3330
#define BT_BD_ADDR_HEX(addr) addr[0], addr[1], addr[2], addr[3], addr[4], addr[5]
3431

@@ -108,4 +105,7 @@ void btc_blufi_call_deep_free(btc_msg_t *msg);
108105

109106
uint16_t btc_blufi_get_version(void);
110107

108+
#ifdef __cplusplus
109+
}
110+
#endif
111111
#endif /* __BTC_BLUFI_PRF_H__ */

tools/sdk/esp32c3/include/bt/host/bluedroid/api/include/api/esp_gap_ble_api.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -896,7 +896,7 @@ typedef struct {
896896
esp_ble_gap_ext_adv_data_status_t data_status; /*!< data type */
897897
uint8_t adv_data_len; /*!< extend advertising data length */
898898
uint8_t adv_data[251]; /*!< extend advertising data */
899-
} esp_ble_gap_ext_adv_reprot_t;
899+
} esp_ble_gap_ext_adv_report_t;
900900

901901
/**
902902
* @brief periodic adv report parameters
@@ -1340,7 +1340,7 @@ typedef union {
13401340
* @brief ESP_GAP_BLE_EXT_ADV_REPORT_EVT
13411341
*/
13421342
struct ble_ext_adv_report_param {
1343-
esp_ble_gap_ext_adv_reprot_t params; /*!< extend advertising report parameters */
1343+
esp_ble_gap_ext_adv_report_t params; /*!< extend advertising report parameters */
13441344
} ext_adv_report; /*!< Event parameter of ESP_GAP_BLE_EXT_ADV_REPORT_EVT */
13451345
/**
13461346
* @brief ESP_GAP_BLE_PERIODIC_ADV_REPORT_EVT

tools/sdk/esp32c3/ld/sections.ld

+1-1
Original file line numberDiff line numberDiff line change
@@ -349,8 +349,8 @@ SECTIONS
349349
_bss_start = ABSOLUTE(.);
350350

351351
*(EXCLUDE_FILE(*libbt.a *libbtdm_app.a *libnimble.a) .bss EXCLUDE_FILE(*libbt.a *libbtdm_app.a *libnimble.a) .bss.*)
352-
*(.dynbss .dynsbss .gnu.linkonce.b .gnu.linkonce.b.* .gnu.linkonce.sb .gnu.linkonce.sb.* .gnu.linkonce.sb2 .gnu.linkonce.sb2.* .sbss .sbss.* .sbss2 .sbss2.* .scommon .share.mem)
353352
*(.ext_ram.bss .ext_ram.bss.*)
353+
*(.dynbss .dynsbss .gnu.linkonce.b .gnu.linkonce.b.* .gnu.linkonce.sb .gnu.linkonce.sb.* .gnu.linkonce.sb2 .gnu.linkonce.sb2.* .sbss .sbss.* .sbss2 .sbss2.* .scommon .share.mem)
354354
*(EXCLUDE_FILE(*libbt.a *libbtdm_app.a *libnimble.a) COMMON)
355355
. = ALIGN(4);
356356
_bt_bss_start = ABSOLUTE(.);

tools/sdk/esp32c3/lib/libapp_update.a

0 Bytes
Binary file not shown.

tools/sdk/esp32c3/lib/libbt.a

5.14 KB
Binary file not shown.

tools/sdk/esp32c3/lib/libesp_system.a

0 Bytes
Binary file not shown.

tools/sdk/esp32c3/lib/libprotocomm.a

0 Bytes
Binary file not shown.

tools/sdk/esp32c3/qio_qspi/include/sdkconfig.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -849,5 +849,5 @@
849849
#define CONFIG_TOOLPREFIX CONFIG_SDK_TOOLPREFIX
850850
#define CONFIG_UDP_RECVMBOX_SIZE CONFIG_LWIP_UDP_RECVMBOX_SIZE
851851
#define CONFIG_WARN_WRITE_STRINGS CONFIG_COMPILER_WARN_WRITE_STRINGS
852-
#define CONFIG_ARDUINO_IDF_COMMIT "c4ce15b33d"
852+
#define CONFIG_ARDUINO_IDF_COMMIT "cebb1b3068"
853853
#define CONFIG_ARDUINO_IDF_BRANCH "release/v4.4"

tools/sdk/esp32c3/qout_qspi/include/sdkconfig.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -849,5 +849,5 @@
849849
#define CONFIG_TOOLPREFIX CONFIG_SDK_TOOLPREFIX
850850
#define CONFIG_UDP_RECVMBOX_SIZE CONFIG_LWIP_UDP_RECVMBOX_SIZE
851851
#define CONFIG_WARN_WRITE_STRINGS CONFIG_COMPILER_WARN_WRITE_STRINGS
852-
#define CONFIG_ARDUINO_IDF_COMMIT "c4ce15b33d"
852+
#define CONFIG_ARDUINO_IDF_COMMIT "cebb1b3068"
853853
#define CONFIG_ARDUINO_IDF_BRANCH "release/v4.4"

tools/sdk/esp32s2/dio_qspi/include/sdkconfig.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -717,5 +717,5 @@
717717
#define CONFIG_USB_MSC_BUFSIZE CONFIG_TINYUSB_MSC_BUFSIZE
718718
#define CONFIG_USB_MSC_ENABLED CONFIG_TINYUSB_MSC_ENABLED
719719
#define CONFIG_WARN_WRITE_STRINGS CONFIG_COMPILER_WARN_WRITE_STRINGS
720-
#define CONFIG_ARDUINO_IDF_COMMIT "c4ce15b33d"
720+
#define CONFIG_ARDUINO_IDF_COMMIT "cebb1b3068"
721721
#define CONFIG_ARDUINO_IDF_BRANCH "release/v4.4"

tools/sdk/esp32s2/dout_qspi/include/sdkconfig.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -717,5 +717,5 @@
717717
#define CONFIG_USB_MSC_BUFSIZE CONFIG_TINYUSB_MSC_BUFSIZE
718718
#define CONFIG_USB_MSC_ENABLED CONFIG_TINYUSB_MSC_ENABLED
719719
#define CONFIG_WARN_WRITE_STRINGS CONFIG_COMPILER_WARN_WRITE_STRINGS
720-
#define CONFIG_ARDUINO_IDF_COMMIT "c4ce15b33d"
720+
#define CONFIG_ARDUINO_IDF_COMMIT "cebb1b3068"
721721
#define CONFIG_ARDUINO_IDF_BRANCH "release/v4.4"

tools/sdk/esp32s2/ld/sections.ld

+1-1
Original file line numberDiff line numberDiff line change
@@ -406,8 +406,8 @@ SECTIONS
406406
*(.ext_ram.bss*)
407407

408408
*(EXCLUDE_FILE(*libbt.a *libbtdm_app.a *libnimble.a) .bss EXCLUDE_FILE(*libbt.a *libbtdm_app.a *libnimble.a) .bss.*)
409-
*(.dynbss .dynsbss .gnu.linkonce.b .gnu.linkonce.b.* .gnu.linkonce.sb .gnu.linkonce.sb.* .gnu.linkonce.sb2 .gnu.linkonce.sb2.* .sbss .sbss.* .sbss2 .sbss2.* .scommon .share.mem)
410409
*(.ext_ram.bss .ext_ram.bss.*)
410+
*(.dynbss .dynsbss .gnu.linkonce.b .gnu.linkonce.b.* .gnu.linkonce.sb .gnu.linkonce.sb.* .gnu.linkonce.sb2 .gnu.linkonce.sb2.* .sbss .sbss.* .sbss2 .sbss2.* .scommon .share.mem)
411411
*(EXCLUDE_FILE(*libbt.a *libbtdm_app.a *libnimble.a) COMMON)
412412
. = ALIGN(4);
413413
_bt_bss_start = ABSOLUTE(.);

tools/sdk/esp32s2/lib/libapp_update.a

0 Bytes
Binary file not shown.
288 Bytes
Binary file not shown.

tools/sdk/esp32s2/lib/libesp_system.a

0 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)