Select one of the symbols to view example projects that use it.
 
Outline
#define _ESP_RRM_H
#include <stdbool.h>
#include <stdint.h>
#include <stddef.h>
neighbor_rep_request_cb
esp_rrm_send_neighbor_rep_request(neighbor_rep_request_cb, void *);
esp_rrm_send_neighbor_report_request();
esp_rrm_is_rrm_supported_connection();
Files
loading...
SourceVuESP-IDF Framework and ExamplesESP-IDFcomponents/wpa_supplicant/esp_supplicant/include/esp_rrm.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
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* * SPDX-FileCopyrightText: 2020-2023 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Apache-2.0 *//* ... */ #ifndef _ESP_RRM_H #define _ESP_RRM_H #include <stdbool.h> #include <stdint.h> #include <stddef.h> #ifdef __cplusplus extern "C" { #endif /** * @brief Callback function type to get neighbor report * * @param ctx: neighbor report context * @param report: neighbor report * @param report_len: neighbor report length * * @return * - void *//* ... */ typedef void (*neighbor_rep_request_cb)(void *ctx, const uint8_t *report, size_t report_len); /** * @brief Send Radio measurement neighbor report request to connected AP * * @deprecated This function is deprecated and will be removed in the future. * Please use 'esp_rrm_send_neighbor_report_request' * @param cb: callback function for neighbor report * @param cb_ctx: callback context * * @return * - 0: success * - -1: AP does not support RRM * - -2: station not connected to AP *//* ... */ __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); /** * @brief Send Radio measurement neighbor report request to connected AP * @return * - 0: success * - -1: AP does not support RRM * - -2: station not connected to AP *//* ... */ int esp_rrm_send_neighbor_report_request(void); /** * @brief Check RRM capability of connected AP * * @return * - true: AP supports RRM * - false: AP does not support RRM or station not connected to AP *//* ... */ bool esp_rrm_is_rrm_supported_connection(void); #ifdef __cplusplus }{...} #endif/* ... */ #endif
Details
Show:
from
Types: Columns: