1
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
53
54
55
62
63
64
65
66
67
/* ... */
#ifndef _ESP_RRM_H
#define _ESP_RRM_H
#include <stdbool.h>
#include <stdint.h>
#include <stddef.h>
#ifdef __cplusplus
extern "C" {
#endif
/* ... */
typedef void (*neighbor_rep_request_cb)(void *ctx, const uint8_t *report, size_t report_len);
/* ... */
__attribute__((deprecated("Use 'esp_rrm_send_neighbor_report_request' instead")))
int esp_rrm_send_neighbor_rep_request(neighbor_rep_request_cb cb,
void *cb_ctx);
/* ... */
int esp_rrm_send_neighbor_report_request(void);
/* ... */
bool esp_rrm_is_rrm_supported_connection(void);
#ifdef __cplusplus
}{...}
#endif/* ... */
#endif