Based on what I found in ESP-IDF 5.1.3 and 5.2.1, it seems that Wi-Fi Aware or NAN (Neighbor Awareness Networking) is only supported on ESP32 and ESP32S2.
See this example: https://github.com/espressif/esp-idf/tr ... _publisher
and the code below
Code: Select all
typedef enum {
WIFI_IF_STA = ESP_IF_WIFI_STA,
WIFI_IF_AP = ESP_IF_WIFI_AP,
#if defined(CONFIG_IDF_TARGET_ESP32) || defined(CONFIG_IDF_TARGET_ESP32S2)
WIFI_IF_NAN = ESP_IF_WIFI_NAN,
#endif
WIFI_IF_MAX
} wifi_interface_t;
Many thanks