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
This commit is contained in:
hrushikesh.bhosale
2025-05-16 11:29:40 +05:30
parent 7737085019
commit 7d9a384a4a

View File

@ -69,8 +69,8 @@
#define MQTT_SUPPORTED_FEATURE_CRT_CMN_NAME
#endif
#if ESP_IDF_VERSION >= ESP_IDF_VERSION_VAL(5, 3, 0)
// Features supported in 5.3.0
#if ESP_IDF_VERSION >= ESP_IDF_VERSION_VAL(5, 2, 0)
// Features supported in 5.2.0
#define MQTT_SUPPORTED_FEATURE_ECDSA_PERIPHERAL
#endif