Skip to content

Commit 7d9a384

Browse files
committed
fix(mqtt): Updated the idf version check for ECDSA support
ECDSA support from the esp-idf veriosn 5.2.0, although we had support ECDSA peripheral for H2 since 5.1, but we had put the support of ECDSA in esp-tls from v5.2.0
1 parent 7737085 commit 7d9a384

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

include/mqtt_supported_features.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,8 @@
6969
#define MQTT_SUPPORTED_FEATURE_CRT_CMN_NAME
7070
#endif
7171

72-
#if ESP_IDF_VERSION >= ESP_IDF_VERSION_VAL(5, 3, 0)
73-
// Features supported in 5.3.0
72+
#if ESP_IDF_VERSION >= ESP_IDF_VERSION_VAL(5, 2, 0)
73+
// Features supported in 5.2.0
7474
#define MQTT_SUPPORTED_FEATURE_ECDSA_PERIPHERAL
7575
#endif
7676

0 commit comments

Comments
 (0)