Skip to content

Commit d73535a

Browse files
committed
IDF release/v4.4 36823b45cc
1 parent ee4551e commit d73535a

File tree

36 files changed

+44
-68
lines changed

36 files changed

+44
-68
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
@@ -310,7 +310,7 @@
310310
"UNITY_INCLUDE_CONFIG_H",
311311
"WITH_POSIX",
312312
"_GNU_SOURCE",
313-
("IDF_VER", '\\"v4.4.1-85-g69a3bdacb0\\"'),
313+
("IDF_VER", '\\"v4.4.1-91-g36823b45cc\\"'),
314314
"ESP_PLATFORM",
315315
"_POSIX_READER_WRITER_LOCKS",
316316
"ARDUINO_ARCH_ESP32",

tools/platformio-build-esp32c3.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,7 @@
303303
"UNITY_INCLUDE_CONFIG_H",
304304
"WITH_POSIX",
305305
"_GNU_SOURCE",
306-
("IDF_VER", '\\"v4.4.1-85-g69a3bdacb0\\"'),
306+
("IDF_VER", '\\"v4.4.1-91-g36823b45cc\\"'),
307307
"ESP_PLATFORM",
308308
"_POSIX_READER_WRITER_LOCKS",
309309
"ARDUINO_ARCH_ESP32",

tools/platformio-build-esp32s2.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -305,7 +305,7 @@
305305
"UNITY_INCLUDE_CONFIG_H",
306306
"WITH_POSIX",
307307
"_GNU_SOURCE",
308-
("IDF_VER", '\\"v4.4.1-85-g69a3bdacb0\\"'),
308+
("IDF_VER", '\\"v4.4.1-91-g36823b45cc\\"'),
309309
"ESP_PLATFORM",
310310
"_POSIX_READER_WRITER_LOCKS",
311311
"ARDUINO_ARCH_ESP32",

tools/platformio-build-esp32s3.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,7 @@
322322
"UNITY_INCLUDE_CONFIG_H",
323323
"WITH_POSIX",
324324
"_GNU_SOURCE",
325-
("IDF_VER", '\\"v4.4.1-85-g69a3bdacb0\\"'),
325+
("IDF_VER", '\\"v4.4.1-91-g36823b45cc\\"'),
326326
"ESP_PLATFORM",
327327
"_POSIX_READER_WRITER_LOCKS",
328328
"ARDUINO_ARCH_ESP32",

tools/sdk/esp32/include/wpa_supplicant/esp_supplicant/include/esp_dpp.h

+5-13
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,8 @@
1-
// Copyright 2020 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: 2020-2022 Espressif Systems (Shanghai) CO LTD
3+
*
4+
* SPDX-License-Identifier: Apache-2.0
5+
*/
146

157
#ifndef ESP_DPP_H
168
#define ESP_DPP_H

tools/sdk/esp32/lib/libapp_update.a

0 Bytes
Binary file not shown.
-614 KB
Binary file not shown.

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -691,5 +691,5 @@
691691
#define CONFIG_ULP_COPROC_ENABLED CONFIG_ESP32_ULP_COPROC_ENABLED
692692
#define CONFIG_ULP_COPROC_RESERVE_MEM CONFIG_ESP32_ULP_COPROC_RESERVE_MEM
693693
#define CONFIG_WARN_WRITE_STRINGS CONFIG_COMPILER_WARN_WRITE_STRINGS
694-
#define CONFIG_ARDUINO_IDF_COMMIT "69a3bdacb0"
694+
#define CONFIG_ARDUINO_IDF_COMMIT "36823b45cc"
695695
#define CONFIG_ARDUINO_IDF_BRANCH "release/v4.4"
0 Bytes
Binary file not shown.

tools/sdk/esp32/sdkconfig

+2
Original file line numberDiff line numberDiff line change
@@ -1527,6 +1527,8 @@ CONFIG_WPA_MBEDTLS_CRYPTO=y
15271527
# CONFIG_WPA_TESTING_OPTIONS is not set
15281528
# CONFIG_WPA_WPS_STRICT is not set
15291529
# CONFIG_WPA_11KV_SUPPORT is not set
1530+
# CONFIG_WPA_MBO_SUPPORT is not set
1531+
# CONFIG_WPA_DPP_SUPPORT is not set
15301532
# end of Supplicant
15311533

15321534
#

tools/sdk/esp32c3/include/wpa_supplicant/esp_supplicant/include/esp_dpp.h

+5-13
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,8 @@
1-
// Copyright 2020 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: 2020-2022 Espressif Systems (Shanghai) CO LTD
3+
*
4+
* SPDX-License-Identifier: Apache-2.0
5+
*/
146

157
#ifndef ESP_DPP_H
168
#define ESP_DPP_H

tools/sdk/esp32c3/lib/libapp_update.a

0 Bytes
Binary file not shown.
-921 KB
Binary file not shown.

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -676,5 +676,5 @@
676676
#define CONFIG_TOOLPREFIX CONFIG_SDK_TOOLPREFIX
677677
#define CONFIG_UDP_RECVMBOX_SIZE CONFIG_LWIP_UDP_RECVMBOX_SIZE
678678
#define CONFIG_WARN_WRITE_STRINGS CONFIG_COMPILER_WARN_WRITE_STRINGS
679-
#define CONFIG_ARDUINO_IDF_COMMIT "69a3bdacb0"
679+
#define CONFIG_ARDUINO_IDF_COMMIT "36823b45cc"
680680
#define CONFIG_ARDUINO_IDF_BRANCH "release/v4.4"
0 Bytes
Binary file not shown.

tools/sdk/esp32c3/sdkconfig

+2
Original file line numberDiff line numberDiff line change
@@ -1574,6 +1574,8 @@ CONFIG_WPA_MBEDTLS_CRYPTO=y
15741574
# CONFIG_WPA_TESTING_OPTIONS is not set
15751575
# CONFIG_WPA_WPS_STRICT is not set
15761576
# CONFIG_WPA_11KV_SUPPORT is not set
1577+
# CONFIG_WPA_MBO_SUPPORT is not set
1578+
# CONFIG_WPA_DPP_SUPPORT is not set
15771579
# end of Supplicant
15781580

15791581
#

tools/sdk/esp32s2/include/wpa_supplicant/esp_supplicant/include/esp_dpp.h

+5-13
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,8 @@
1-
// Copyright 2020 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: 2020-2022 Espressif Systems (Shanghai) CO LTD
3+
*
4+
* SPDX-License-Identifier: Apache-2.0
5+
*/
146

157
#ifndef ESP_DPP_H
168
#define ESP_DPP_H

tools/sdk/esp32s2/lib/libapp_update.a

0 Bytes
Binary file not shown.
-614 KB
Binary file not shown.

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -612,5 +612,5 @@
612612
#define CONFIG_USB_MSC_BUFSIZE CONFIG_TINYUSB_MSC_BUFSIZE
613613
#define CONFIG_USB_MSC_ENABLED CONFIG_TINYUSB_MSC_ENABLED
614614
#define CONFIG_WARN_WRITE_STRINGS CONFIG_COMPILER_WARN_WRITE_STRINGS
615-
#define CONFIG_ARDUINO_IDF_COMMIT "69a3bdacb0"
615+
#define CONFIG_ARDUINO_IDF_COMMIT "36823b45cc"
616616
#define CONFIG_ARDUINO_IDF_BRANCH "release/v4.4"
0 Bytes
Binary file not shown.

tools/sdk/esp32s2/sdkconfig

+2
Original file line numberDiff line numberDiff line change
@@ -1430,6 +1430,8 @@ CONFIG_WPA_MBEDTLS_CRYPTO=y
14301430
# CONFIG_WPA_TESTING_OPTIONS is not set
14311431
# CONFIG_WPA_WPS_STRICT is not set
14321432
# CONFIG_WPA_11KV_SUPPORT is not set
1433+
# CONFIG_WPA_MBO_SUPPORT is not set
1434+
# CONFIG_WPA_DPP_SUPPORT is not set
14331435
# end of Supplicant
14341436

14351437
#

tools/sdk/esp32s3/include/wpa_supplicant/esp_supplicant/include/esp_dpp.h

+5-13
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,8 @@
1-
// Copyright 2020 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: 2020-2022 Espressif Systems (Shanghai) CO LTD
3+
*
4+
* SPDX-License-Identifier: Apache-2.0
5+
*/
146

157
#ifndef ESP_DPP_H
168
#define ESP_DPP_H

tools/sdk/esp32s3/lib/libapp_update.a

0 Bytes
Binary file not shown.
-613 KB
Binary file not shown.

tools/sdk/esp32s3/opi_opi/include/sdkconfig.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -991,5 +991,5 @@
991991
#define CONFIG_USB_MSC_BUFSIZE CONFIG_TINYUSB_MSC_BUFSIZE
992992
#define CONFIG_USB_MSC_ENABLED CONFIG_TINYUSB_MSC_ENABLED
993993
#define CONFIG_WARN_WRITE_STRINGS CONFIG_COMPILER_WARN_WRITE_STRINGS
994-
#define CONFIG_ARDUINO_IDF_COMMIT "69a3bdacb0"
994+
#define CONFIG_ARDUINO_IDF_COMMIT "36823b45cc"
995995
#define CONFIG_ARDUINO_IDF_BRANCH "release/v4.4"
0 Bytes
Binary file not shown.

tools/sdk/esp32s3/opi_qspi/include/sdkconfig.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -989,5 +989,5 @@
989989
#define CONFIG_USB_MSC_BUFSIZE CONFIG_TINYUSB_MSC_BUFSIZE
990990
#define CONFIG_USB_MSC_ENABLED CONFIG_TINYUSB_MSC_ENABLED
991991
#define CONFIG_WARN_WRITE_STRINGS CONFIG_COMPILER_WARN_WRITE_STRINGS
992-
#define CONFIG_ARDUINO_IDF_COMMIT "69a3bdacb0"
992+
#define CONFIG_ARDUINO_IDF_COMMIT "36823b45cc"
993993
#define CONFIG_ARDUINO_IDF_BRANCH "release/v4.4"
0 Bytes
Binary file not shown.

tools/sdk/esp32s3/qspi_opi/include/sdkconfig.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -991,5 +991,5 @@
991991
#define CONFIG_USB_MSC_BUFSIZE CONFIG_TINYUSB_MSC_BUFSIZE
992992
#define CONFIG_USB_MSC_ENABLED CONFIG_TINYUSB_MSC_ENABLED
993993
#define CONFIG_WARN_WRITE_STRINGS CONFIG_COMPILER_WARN_WRITE_STRINGS
994-
#define CONFIG_ARDUINO_IDF_COMMIT "69a3bdacb0"
994+
#define CONFIG_ARDUINO_IDF_COMMIT "36823b45cc"
995995
#define CONFIG_ARDUINO_IDF_BRANCH "release/v4.4"
0 Bytes
Binary file not shown.

tools/sdk/esp32s3/qspi_qspi/include/sdkconfig.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -989,5 +989,5 @@
989989
#define CONFIG_USB_MSC_BUFSIZE CONFIG_TINYUSB_MSC_BUFSIZE
990990
#define CONFIG_USB_MSC_ENABLED CONFIG_TINYUSB_MSC_ENABLED
991991
#define CONFIG_WARN_WRITE_STRINGS CONFIG_COMPILER_WARN_WRITE_STRINGS
992-
#define CONFIG_ARDUINO_IDF_COMMIT "69a3bdacb0"
992+
#define CONFIG_ARDUINO_IDF_COMMIT "36823b45cc"
993993
#define CONFIG_ARDUINO_IDF_BRANCH "release/v4.4"
0 Bytes
Binary file not shown.

tools/sdk/esp32s3/qspi_qspi/sections.ld

+1-1
Original file line numberDiff line numberDiff line change
@@ -363,8 +363,8 @@ SECTIONS
363363
*(.ext_ram.bss*)
364364

365365
*(.bss .bss.*)
366-
*(.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)
367366
*(.ext_ram.bss .ext_ram.bss.*)
367+
*(.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)
368368
*(COMMON)
369369
_bt_bss_start = ABSOLUTE(.);
370370
*libbt.a:(.bss .bss.* COMMON)

tools/sdk/esp32s3/sdkconfig

+2
Original file line numberDiff line numberDiff line change
@@ -2073,6 +2073,8 @@ CONFIG_WPA_MBEDTLS_CRYPTO=y
20732073
# CONFIG_WPA_TESTING_OPTIONS is not set
20742074
# CONFIG_WPA_WPS_STRICT is not set
20752075
# CONFIG_WPA_11KV_SUPPORT is not set
2076+
# CONFIG_WPA_MBO_SUPPORT is not set
2077+
# CONFIG_WPA_DPP_SUPPORT is not set
20762078
# end of Supplicant
20772079

20782080
#

0 commit comments

Comments
 (0)