mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-09 20:41:14 +00:00
esp_wifi: Add support for NAN Discovery and Datapath
Update wifi lib with below - 1. Create NAN Discovery SM for beaconing & cluster formation 2. Create NAN interface for Tx/Rx of beacons & action frames 3. Add commands & events for NAN Services Publish/Subscribe/Followup 4. Add NAN Datapath definitions, Events, Peer structures 5. Support for forming and parsing of Datapath related attributes 6. Modules for NDP Req, Resp, Confirm, Term, Peer management 7. NAN Interface related additions in Datapath, Data Tx Q's In addition include below changes - 1. Add netif and driver support for NAN Interface 2. Add simple examples for Publisher-Subscriber usecases 3. Add an advanced console example that supports commands for NAN Discovery, Services & Datapath 4. Add wifi_apps for providing better NAN API's and Peer management Co-authored-by: Shyamal Khachane <shyamal.khachane@espressif.com>
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* SPDX-FileCopyrightText: 2022 Espressif Systems (Shanghai) CO LTD
|
||||
* SPDX-FileCopyrightText: 2022-2023 Espressif Systems (Shanghai) CO LTD
|
||||
*
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
@@ -65,6 +65,13 @@ err_t wlanif_init_ap(struct netif *netif);
|
||||
*/
|
||||
err_t wlanif_init_sta(struct netif *netif);
|
||||
|
||||
/**
|
||||
* @brief LWIP's network stack init function for WiFi Aware interface (NAN)
|
||||
* @param netif LWIP's network interface handle
|
||||
* @return ERR_OK on success
|
||||
*/
|
||||
err_t wlanif_init_nan(struct netif *netif);
|
||||
|
||||
/**
|
||||
* @brief LWIP's network stack input packet function for WiFi (both STA/AP)
|
||||
* @param h LWIP's network interface handle
|
||||
|
Reference in New Issue
Block a user