Select one of the symbols to view example projects that use it.
 
Outline
#define ESP_DPP_H
#include <stdbool.h>
#include "esp_err.h"
#include "esp_wifi_types.h"
#define ESP_DPP_AUTH_TIMEOUT_SECS
#define ESP_DPP_MAX_CHAN_COUNT
#define ESP_ERR_DPP_FAILURE
#define ESP_ERR_DPP_TX_FAILURE
#define ESP_ERR_DPP_INVALID_ATTR
#define ESP_ERR_DPP_AUTH_TIMEOUT
#define ESP_ERR_DPP_INVALID_LIST
dpp_bootstrap_type
esp_supp_dpp_event_t
esp_supp_dpp_event_cb_t
esp_supp_dpp_init(esp_supp_dpp_event_cb_t);
esp_supp_dpp_deinit();
esp_supp_dpp_bootstrap_gen(const char *, esp_supp_dpp_bootstrap_t, const char *, const char *);
esp_supp_dpp_start_listen();
esp_supp_dpp_stop_listen();
Files
loading...
SourceVuESP-IDF Framework and ExamplesESP-IDFcomponents/wpa_supplicant/esp_supplicant/include/esp_dpp.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* * SPDX-FileCopyrightText: 2020-2024 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Apache-2.0 *//* ... */ #ifndef ESP_DPP_H #define ESP_DPP_H #include <stdbool.h> #include "esp_err.h" #include "esp_wifi_types.h" #ifdef __cplusplus extern "C" { #endif #define ESP_DPP_AUTH_TIMEOUT_SECS 1 #define ESP_DPP_MAX_CHAN_COUNT 5 #define ESP_ERR_DPP_FAILURE (ESP_ERR_WIFI_BASE + 151) /*!< Generic failure during DPP Operation */ #define ESP_ERR_DPP_TX_FAILURE (ESP_ERR_WIFI_BASE + 152) /*!< DPP Frame Tx failed OR not Acked */ #define ESP_ERR_DPP_INVALID_ATTR (ESP_ERR_WIFI_BASE + 153) /*!< Encountered invalid DPP Attribute */ #define ESP_ERR_DPP_AUTH_TIMEOUT (ESP_ERR_WIFI_BASE + 154) /*!< DPP Auth response was not received in time */ #define ESP_ERR_DPP_INVALID_LIST (ESP_ERR_WIFI_BASE + 155) /*!< Channel list given in esp_supp_dpp_bootstrap_gen() is not valid or too big */7 defines /** @brief Types of Bootstrap Methods for DPP. */ typedef enum dpp_bootstrap_type { DPP_BOOTSTRAP_QR_CODE, /**< QR Code Method */ DPP_BOOTSTRAP_PKEX, /**< Proof of Knowledge Method */ DPP_BOOTSTRAP_NFC_URI, /**< NFC URI record Method */ }{ ... } esp_supp_dpp_bootstrap_t; /** @brief Types of Callback Events received from DPP Supplicant. */ typedef enum { ESP_SUPP_DPP_URI_READY, /**< URI is ready through Bootstrapping */ ESP_SUPP_DPP_CFG_RECVD, /**< Config received via DPP Authentication */ ESP_SUPP_DPP_PDR_RECVD, /**< Peer Discovery Response is received */ ESP_SUPP_DPP_FAIL, /**< DPP Authentication failure */ }{ ... } esp_supp_dpp_event_t; /** * @brief Callback function for receiving DPP Events from Supplicant. * * Callback function will be called with DPP related information. * * @param evt DPP event ID * @param data Event data payload *//* ... */ typedef void (*esp_supp_dpp_event_cb_t)(esp_supp_dpp_event_t evt, void *data); /** * @brief Initialize DPP Supplicant * * Starts DPP Supplicant and initializes related Data Structures. * * @param evt_cb Callback function to receive DPP related events * * return * - ESP_OK: Success * - ESP_FAIL: Failure *//* ... */ esp_err_t esp_supp_dpp_init(esp_supp_dpp_event_cb_t evt_cb); /** * @brief De-initalize DPP Supplicant * * Frees memory from DPP Supplicant Data Structures. * * @return * - ESP_OK: Success *//* ... */ esp_err_t esp_supp_dpp_deinit(void); /** * @brief Generates Bootstrap Information as an Enrollee. * * Generates Out Of Band Bootstrap information as an Enrollee which can be * used by a DPP Configurator to provision the Enrollee. * * @param chan_list List of channels device will be available on for listening * @param type Bootstrap method type, only QR Code method is supported for now. * @param key (Optional) 32 byte Raw Private Key for generating a Bootstrapping Public Key * @param info (Optional) Ancillary Device Information like Serial Number * * @return * - ESP_OK: Success * - ESP_ERR_DPP_INVALID_LIST: Channel list not valid * - ESP_FAIL: Failure *//* ... */ esp_err_t esp_supp_dpp_bootstrap_gen(const char *chan_list, esp_supp_dpp_bootstrap_t type, const char *key, const char *info); /** * @brief Start listening on Channels provided during esp_supp_dpp_bootstrap_gen. * * Listens on every Channel from Channel List for a pre-defined wait time. * * @return * - ESP_OK: Success * - ESP_FAIL: Generic Failure * - ESP_ERR_INVALID_STATE: ROC attempted before WiFi is started * - ESP_ERR_NO_MEM: Memory allocation failed while posting ROC request *//* ... */ esp_err_t esp_supp_dpp_start_listen(void); /** * @brief Stop listening on Channels. * * Stops listening on Channels and cancels ongoing listen operation. * * @return * - ESP_OK: Success * - ESP_FAIL: Failure *//* ... */ esp_err_t esp_supp_dpp_stop_listen(void); #ifdef __cplusplus }{...} #endif/* ... */ #endif /* ESP_DPP_H */
Details