Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit b69b44a

Browse files
committedFeb 6, 2022
IDF release/v4.4 7c986a64c7
1 parent a675e64 commit b69b44a

13 files changed

+9
-9
lines changed
 

‎platform.txt

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

‎tools/platformio-build-esp32.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-112-g0a1e309ee4\\"'),
306+
("IDF_VER", '\\"v4.4-114-g7c986a64c7\\"'),
307307
"ESP_PLATFORM",
308308
"_POSIX_READER_WRITER_LOCKS",
309309
"ARDUINO_ARCH_ESP32",

‎tools/platformio-build-esp32c3.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@
293293
"UNITY_INCLUDE_CONFIG_H",
294294
"WITH_POSIX",
295295
"_GNU_SOURCE",
296-
("IDF_VER", '\\"v4.4-112-g0a1e309ee4\\"'),
296+
("IDF_VER", '\\"v4.4-114-g7c986a64c7\\"'),
297297
"ESP_PLATFORM",
298298
"_POSIX_READER_WRITER_LOCKS",
299299
"ARDUINO_ARCH_ESP32",

‎tools/platformio-build-esp32s2.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@
290290
"UNITY_INCLUDE_CONFIG_H",
291291
"WITH_POSIX",
292292
"_GNU_SOURCE",
293-
("IDF_VER", '\\"v4.4-112-g0a1e309ee4\\"'),
293+
("IDF_VER", '\\"v4.4-114-g7c986a64c7\\"'),
294294
"ESP_PLATFORM",
295295
"_POSIX_READER_WRITER_LOCKS",
296296
"ARDUINO_ARCH_ESP32",

‎tools/sdk/esp32/include/config/sdkconfig.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -682,5 +682,5 @@
682682
#define CONFIG_ULP_COPROC_RESERVE_MEM CONFIG_ESP32_ULP_COPROC_RESERVE_MEM
683683
#define CONFIG_WARN_WRITE_STRINGS CONFIG_COMPILER_WARN_WRITE_STRINGS
684684
#define CONFIG_WIFI_LWIP_ALLOCATION_FROM_SPIRAM_FIRST CONFIG_SPIRAM_TRY_ALLOCATE_WIFI_LWIP
685-
#define CONFIG_ARDUINO_IDF_COMMIT "0a1e309ee4"
685+
#define CONFIG_ARDUINO_IDF_COMMIT "7c986a64c7"
686686
#define CONFIG_ARDUINO_IDF_BRANCH "release/v4.4"

‎tools/sdk/esp32/lib/libapp_update.a

0 Bytes
Binary file not shown.

‎tools/sdk/esp32/lib/libesp_system.a

0 Bytes
Binary file not shown.

‎tools/sdk/esp32c3/include/config/sdkconfig.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -633,5 +633,5 @@
633633
#define CONFIG_TIMER_TASK_STACK_SIZE CONFIG_ESP_TIMER_TASK_STACK_SIZE
634634
#define CONFIG_TOOLPREFIX CONFIG_SDK_TOOLPREFIX
635635
#define CONFIG_UDP_RECVMBOX_SIZE CONFIG_LWIP_UDP_RECVMBOX_SIZE
636-
#define CONFIG_ARDUINO_IDF_COMMIT "0a1e309ee4"
636+
#define CONFIG_ARDUINO_IDF_COMMIT "7c986a64c7"
637637
#define CONFIG_ARDUINO_IDF_BRANCH "release/v4.4"

‎tools/sdk/esp32c3/lib/libapp_update.a

0 Bytes
Binary file not shown.

‎tools/sdk/esp32c3/lib/libesp_system.a

0 Bytes
Binary file not shown.

‎tools/sdk/esp32s2/include/config/sdkconfig.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -582,5 +582,5 @@
582582
#define CONFIG_USB_MSC_BUFSIZE CONFIG_TINYUSB_MSC_BUFSIZE
583583
#define CONFIG_USB_MSC_ENABLED CONFIG_TINYUSB_MSC_ENABLED
584584
#define CONFIG_WARN_WRITE_STRINGS CONFIG_COMPILER_WARN_WRITE_STRINGS
585-
#define CONFIG_ARDUINO_IDF_COMMIT "0a1e309ee4"
585+
#define CONFIG_ARDUINO_IDF_COMMIT "7c986a64c7"
586586
#define CONFIG_ARDUINO_IDF_BRANCH "release/v4.4"

‎tools/sdk/esp32s2/lib/libapp_update.a

0 Bytes
Binary file not shown.

‎tools/sdk/esp32s2/lib/libesp_system.a

0 Bytes
Binary file not shown.

4 commit comments

Comments
 (4)

Jason2866 commented on Feb 7, 2022

@Jason2866
Collaborator

Since mbedtls was updated in IDF44 this error happens

/home/runner/Arduino/hardware/espressif/esp32/libraries/WiFiClientSecure/src/ssl_client.cpp:24:4: warning: #warning "Please configure IDF framework to include mbedTLS -> Enable pre-shared-key ciphersuites and activate at least one cipher" [-Wcpp]
 #  warning "Please configure IDF framework to include mbedTLS -> Enable pre-shared-key ciphersuites and activate at least one cipher"
    ^~~~~~~

me-no-dev commented on Feb 7, 2022

@me-no-dev
MemberAuthor

@igrr is this expected? As far as I see in the previous commit, sdkconfig did not change apart from adding another define.

igrr commented on Feb 7, 2022

@igrr
Member

It seems to be related to this mbedTLS change: Mbed-TLS/mbedtls@eccd888. MbedTLS version in release/v4.4 was recently upgraded from 2.16.x to 2.28.x.
I think you need to replace this line:

#ifndef MBEDTLS_KEY_EXCHANGE__SOME__PSK_ENABLED

with

#ifndef MBEDTLS_KEY_EXCHANGE_SOME_PSK_ENABLED

(or you can do something like if !defined(MBEDTLS_KEY_EXCHANGE__SOME__PSK_ENABLED) && !defined(MBEDTLS_KEY_EXCHANGE_SOME_PSK_ENABLED) if you prefer to keep arduino-esp32 working with older versions of IDF release/v4.4...)

me-no-dev commented on Feb 7, 2022

@me-no-dev
MemberAuthor

thanks!

Please sign in to comment.