Merge branch 'bugfix/fix_esp32c2_dose_not_support_wapi' into 'master'

esp_wifi: esp32c2 does not support wapi

Closes IDF-4216

See merge request espressif/esp-idf!18573
This commit is contained in:
morris
2022-06-20 21:31:54 +08:00
11 changed files with 37 additions and 11 deletions

View File

@@ -682,3 +682,7 @@ config SOC_WIFI_FTM_SUPPORT
config SOC_WIFI_GCMP_SUPPORT
bool
default n
config SOC_WIFI_WAPI_SUPPORT
bool
default y

View File

@@ -380,6 +380,7 @@
#define SOC_BLE_DONT_UPDATE_OWN_RPA (1)
/*-------------------------- WI-FI HARDWARE CAPS -------------------------------*/
#define SOC_WIFI_HW_TSF (0) /*!< Support hardware TSF */
#define SOC_WIFI_FTM_SUPPORT (0) /*!< FTM Support */
#define SOC_WIFI_GCMP_SUPPORT (0) /*!< GCMP Support(GCMP128 and GCMP256) */
#define SOC_WIFI_HW_TSF (0) /*!< Hardware TSF is not supported */
#define SOC_WIFI_FTM_SUPPORT (0) /*!< FTM is not supported */
#define SOC_WIFI_GCMP_SUPPORT (0) /*!< GCMP is not supported(GCMP128 and GCMP256) */
#define SOC_WIFI_WAPI_SUPPORT (1) /*!< Support WAPI */