1
6
7
8
9
10
11
12
13
14
15
16
17
18
19
27
28
29
34
35
36
42
43
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
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
/* ... */
#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)
#define ESP_ERR_DPP_TX_FAILURE (ESP_ERR_WIFI_BASE + 152)
#define ESP_ERR_DPP_INVALID_ATTR (ESP_ERR_WIFI_BASE + 153)
#define ESP_ERR_DPP_AUTH_TIMEOUT (ESP_ERR_WIFI_BASE + 154)
#define ESP_ERR_DPP_INVALID_LIST (ESP_ERR_WIFI_BASE + 155) 7 defines
typedef enum dpp_bootstrap_type {
DPP_BOOTSTRAP_QR_CODE,
DPP_BOOTSTRAP_PKEX,
DPP_BOOTSTRAP_NFC_URI,
}{ ... } esp_supp_dpp_bootstrap_t;
typedef enum {
ESP_SUPP_DPP_URI_READY,
ESP_SUPP_DPP_CFG_RECVD,
ESP_SUPP_DPP_PDR_RECVD,
ESP_SUPP_DPP_FAIL,
}{ ... } esp_supp_dpp_event_t;
/* ... */
typedef void (*esp_supp_dpp_event_cb_t)(esp_supp_dpp_event_t evt, void *data);
/* ... */
esp_err_t esp_supp_dpp_init(esp_supp_dpp_event_cb_t evt_cb);
/* ... */
esp_err_t esp_supp_dpp_deinit(void);
/* ... */
esp_err_t
esp_supp_dpp_bootstrap_gen(const char *chan_list, esp_supp_dpp_bootstrap_t type,
const char *key, const char *info);
/* ... */
esp_err_t esp_supp_dpp_start_listen(void);
/* ... */
esp_err_t esp_supp_dpp_stop_listen(void);
#ifdef __cplusplus
}{...}
#endif/* ... */
#endif