This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
File tree
13 files changed
+9
-9
lines changed- tools
- sdk
- esp32
- include/config
- lib
- esp32c3
- include/config
- lib
- esp32s2
- include/config
- lib
13 files changed
+9
-9
lines changed+3-3
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
303 | 303 |
| |
304 | 304 |
| |
305 | 305 |
| |
306 |
| - | |
| 306 | + | |
307 | 307 |
| |
308 | 308 |
| |
309 | 309 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
293 | 293 |
| |
294 | 294 |
| |
295 | 295 |
| |
296 |
| - | |
| 296 | + | |
297 | 297 |
| |
298 | 298 |
| |
299 | 299 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
290 | 290 |
| |
291 | 291 |
| |
292 | 292 |
| |
293 |
| - | |
| 293 | + | |
294 | 294 |
| |
295 | 295 |
| |
296 | 296 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
682 | 682 |
| |
683 | 683 |
| |
684 | 684 |
| |
685 |
| - | |
| 685 | + | |
686 | 686 |
|
Binary file not shown.
Binary file not shown.
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
633 | 633 |
| |
634 | 634 |
| |
635 | 635 |
| |
636 |
| - | |
| 636 | + | |
637 | 637 |
|
Binary file not shown.
Binary file not shown.
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
582 | 582 |
| |
583 | 583 |
| |
584 | 584 |
| |
585 |
| - | |
| 585 | + | |
586 | 586 |
|
Binary file not shown.
Binary file not shown.
4 commit comments
Jason2866 commentedon Feb 7, 2022
Since mbedtls was updated in IDF44 this error happens
me-no-dev commentedon Feb 7, 2022
@igrr is this expected? As far as I see in the previous commit, sdkconfig did not change apart from adding another define.
igrr commentedon Feb 7, 2022
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:
arduino-esp32/libraries/WiFiClientSecure/src/ssl_client.cpp
Line 23 in ab6e010
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 commentedon Feb 7, 2022
thanks!