From 7d9a384a4aedfb9dc7cddb0e64058b1e7987beca Mon Sep 17 00:00:00 2001 From: "hrushikesh.bhosale" Date: Fri, 16 May 2025 11:29:40 +0530 Subject: [PATCH] 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 --- include/mqtt_supported_features.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/mqtt_supported_features.h b/include/mqtt_supported_features.h index 982ef34..b9e7c2d 100644 --- a/include/mqtt_supported_features.h +++ b/include/mqtt_supported_features.h @@ -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