Select one of the symbols to view example projects that use it.
 
Outline
#include "esp_log.h"
#include "esp_err.h"
#include "esp_wifi_types.h"
#include "esp_netif.h"
esp_nan_app_init();
esp_nan_app_deinit();
esp_nan_action_start(esp_netif_t *);
esp_nan_action_stop();
Files
loading...
SourceVuESP-IDF Framework and ExamplesESP-IDFcomponents/esp_wifi/wifi_apps/include/apps_private/wifi_apps_private.h
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* * SPDX-FileCopyrightText: 2023 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Apache-2.0 *//* ... */ #pragma once #include "esp_log.h" #include "esp_err.h" #include "esp_wifi_types.h" #include "esp_netif.h" #ifdef __cplusplus extern "C" { #endif #ifdef CONFIG_ESP_WIFI_NAN_ENABLE /** * @brief Initialize the NAN App and required Data Structures * * @attention This API should be called in esp_wifi_init() *//* ... */ void esp_nan_app_init(void); /** * @brief De-initialize the NAN App and complete the cleanup * * @attention This API should be called in esp_wifi_deinit() *//* ... */ void esp_nan_app_deinit(void); /** * @brief NAN App action handler for NAN Started event. Sets up other event handlers and * initializes NAN App context * * @attention This API should be called in WIFI_EVENT_NAN_STARTED event handler * * @param nan_netif Netif handle corresponding to NAN interface. *//* ... */ void esp_nan_action_start(esp_netif_t *nan_netif); /** * @brief NAN App action handler for NAN Stopped event. Clears other event handlers and * resets NAN App context * * @attention This API should be called in WIFI_EVENT_NAN_STOPPED event handler *//* ... */ void esp_nan_action_stop(void); /* ... */ #endif /* CONFIG_ESP_WIFI_NAN_ENABLE */ #ifdef __cplusplus }{...} #endif
Details
Show:
from
Types: Columns:
This file uses the notable symbols shown below. Click anywhere in the file to view more details.