Select one of the symbols to view example projects that use it.
 
Outline
#define _RPL_H_
#include "net.h"
bt_mesh_update_rpl(struct bt_mesh_rpl *, struct bt_mesh_net_rx *);
bt_mesh_rpl_check(struct bt_mesh_net_rx *, struct bt_mesh_rpl **);
bt_mesh_rpl_update();
bt_mesh_rpl_reset_single(uint16_t, bool);
bt_mesh_rpl_reset(bool);
Files
loading...
SourceVuESP-IDF Framework and ExamplesESP-IDFcomponents/bt/esp_ble_mesh/core/rpl.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
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* Bluetooth Mesh */ /* * SPDX-FileCopyrightText: 2017 Intel Corporation * SPDX-FileContributor: 2018-2023 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Apache-2.0 *//* ... */ #ifndef _RPL_H_ #define _RPL_H_ #include "net.h" #ifdef __cplusplus extern "C" { #endif void bt_mesh_update_rpl(struct bt_mesh_rpl *rpl, struct bt_mesh_net_rx *rx); bool bt_mesh_rpl_check(struct bt_mesh_net_rx *rx, struct bt_mesh_rpl **match); void bt_mesh_rpl_update(void); void bt_mesh_rpl_reset_single(uint16_t src, bool erase); void bt_mesh_rpl_reset(bool erase); #ifdef __cplusplus }{...} #endif /* ... */ #endif /* _RPL_H_ */
Details