Toggle navigation
Documentation
The friendly Operating System for the Internet of Things
Main Page
Related Pages
Supported Boards
Modules
Namespaces
Namespace List
Namespace Members
All
Functions
Variables
Enumerations
Data Structures
Data Structures
Class Hierarchy
Data Fields
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
r
s
t
u
w
~
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
Enumerator
Related Symbols
Files
File List
Globals
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Typedefs
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Enumerations
_
a
b
c
d
e
f
g
h
i
k
l
m
n
p
q
r
s
t
u
v
w
x
z
Enumerator
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Macros
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
►
RIOT OS
•
All
Data Structures
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Modules
Pages
Loading...
Searching...
No Matches
rpble.h
Go to the documentation of this file.
1
/*
2
* Copyright (C) 2021 Freie Universität Berlin
3
*
4
* This file is subject to the terms and conditions of the GNU Lesser
5
* General Public License v2.1. See the file LICENSE in the top level
6
* directory for more details.
7
*/
8
19
#ifndef NET_GNRC_RPL_RPBLE_H
20
#define NET_GNRC_RPL_RPBLE_H
21
22
#include <string.h>
23
#if IS_USED(MODULE_NIMBLE_RPBLE)
24
#include "
nimble_rpble.h
"
25
#endif
26
27
#ifdef __cplusplus
28
extern
"C"
{
29
#endif
30
31
#if IS_USED(MODULE_NIMBLE_RPBLE)
32
static
inline
void
gnrc_rpl_rpble_update(
const
gnrc_rpl_dodag_t
*dodag)
33
{
34
nimble_rpble_ctx_t
ctx;
35
ctx.
inst_id
= dodag->instance->id;
36
memcpy(ctx.
dodag_id
, &dodag->dodag_id, 16);
37
ctx.
version
= dodag->version;
38
ctx.
rank
= dodag->my_rank;
39
ctx.
role
= dodag->node_status;
40
nimble_rpble_update
(&ctx);
41
}
42
#else
43
static
inline
void
gnrc_rpl_rpble_update(
const
gnrc_rpl_dodag_t
*dodag)
44
{
45
(void)dodag;
46
/* do nothing here */
47
}
48
#endif
49
50
#ifdef __cplusplus
51
}
52
#endif
53
54
#endif
/* NET_GNRC_RPL_RPBLE_H */
nimble_rpble_update
int nimble_rpble_update(const nimble_rpble_ctx_t *ctx)
Update the current RPL context.
nimble_rpble.h
Interface for the nimble_rpble module.
nimble_rpble_ctx_t
RPL DODAG information.
Definition
nimble_rpble.h:126
nimble_rpble_ctx_t::rank
uint16_t rank
the node's rank in the DODAG
Definition
nimble_rpble.h:131
nimble_rpble_ctx_t::dodag_id
uint8_t dodag_id[16]
DODAG ID.
Definition
nimble_rpble.h:128
nimble_rpble_ctx_t::role
uint8_t role
RPL role of the node.
Definition
nimble_rpble.h:130
nimble_rpble_ctx_t::version
uint8_t version
DODAG version.
Definition
nimble_rpble.h:129
nimble_rpble_ctx_t::inst_id
uint8_t inst_id
instance ID
Definition
nimble_rpble.h:127
gnrc_rpl_dodag_t
struct gnrc_rpl_dodag gnrc_rpl_dodag_t
DODAG representation.
Definition
structs.h:225
Generated on Thu Apr 3 2025 08:02:14 by
1.12.0