fix(wifi): Add suport for FTM in ESP32C61

Resolve FTM failure in 40M Bandwidth
This commit is contained in:
akshat
2025-07-04 13:48:51 +05:30
parent 346870a304
commit 9a77d59b8b
4 changed files with 5 additions and 5 deletions

View File

@@ -1245,7 +1245,7 @@ config SOC_WIFI_HW_TSF
config SOC_WIFI_FTM_SUPPORT config SOC_WIFI_FTM_SUPPORT
bool bool
default n default y
config SOC_WIFI_GCMP_SUPPORT config SOC_WIFI_GCMP_SUPPORT
bool bool

View File

@@ -512,7 +512,7 @@
/*------------------------------------ WI-FI CAPS ------------------------------------*/ /*------------------------------------ WI-FI CAPS ------------------------------------*/
//TODO: IDF-13138, re-open on c61 eco3 //TODO: IDF-13138, re-open on c61 eco3
#define SOC_WIFI_HW_TSF (1) /*!< Support hardware TSF */ #define SOC_WIFI_HW_TSF (1) /*!< Support hardware TSF */
#define SOC_WIFI_FTM_SUPPORT (0) /*!< Support FTM */ #define SOC_WIFI_FTM_SUPPORT (1) /*!< Support FTM */
#define SOC_WIFI_GCMP_SUPPORT (1) /*!< Support GCMP(GCMP128 and GCMP256) */ #define SOC_WIFI_GCMP_SUPPORT (1) /*!< Support GCMP(GCMP128 and GCMP256) */
#define SOC_WIFI_WAPI_SUPPORT (1) /*!< Support WAPI */ #define SOC_WIFI_WAPI_SUPPORT (1) /*!< Support WAPI */
#define SOC_WIFI_CSI_SUPPORT (1) /*!< Support CSI */ #define SOC_WIFI_CSI_SUPPORT (1) /*!< Support CSI */

View File

@@ -1,5 +1,5 @@
| Supported Targets | ESP32-C2 | ESP32-C3 | ESP32-C5 | ESP32-C6 | ESP32-S2 | ESP32-S3 | | Supported Targets | ESP32-C2 | ESP32-C3 | ESP32-C5 | ESP32-C6 | ESP32-C61 | ESP32-S2 | ESP32-S3 |
| ----------------- | -------- | -------- | -------- | -------- | -------- | -------- | | ----------------- | -------- | -------- | -------- | -------- | --------- | -------- | -------- |
# FTM Example # FTM Example