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
init_devs.h
Go to the documentation of this file.
1
/*
2
* Copyright (C) 2020 Otto-von-Guericke-Universität Magdeburg
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 INIT_DEVS_H
20
#define INIT_DEVS_H
21
22
#include "thread.h"
23
#include "msg.h"
24
#include "
net/gnrc/netif/conf.h
"
/* <- GNRC_NETIF_MSG_QUEUE_SIZE */
25
#include "
macros/utils.h
"
26
27
#ifdef __cplusplus
28
extern
"C"
{
29
#endif
30
37
#ifndef GNRC_NETIF_STACKSIZE_DEFAULT
38
#define GNRC_NETIF_STACKSIZE_DEFAULT (THREAD_STACKSIZE_DEFAULT - 128)
39
#endif
40
47
#if IS_USED(MODULE_IEEE802154_SECURITY) || DOXYGEN
48
#define IEEE802154_SECURITY_EXTRA_STACKSIZE (128)
49
#else
50
#define IEEE802154_SECURITY_EXTRA_STACKSIZE (0)
51
#endif
52
56
#if IS_USED(MODULE_OPENDSME)
57
#define IEEE802154_OPENDSME_EXTRA_STACKSIZE (THREAD_STACKSIZE_DEFAULT)
58
#else
59
#define IEEE802154_OPENDSME_EXTRA_STACKSIZE (0)
60
#endif
61
62
#ifndef IEEE802154_STACKSIZE_DEFAULT
66
#define IEEE802154_STACKSIZE_DEFAULT (MAX(520, GNRC_NETIF_STACKSIZE_DEFAULT) + \
67
IEEE802154_SECURITY_EXTRA_STACKSIZE + \
68
IEEE802154_OPENDSME_EXTRA_STACKSIZE)
66
#define IEEE802154_STACKSIZE_DEFAULT (MAX(520, GNRC_NETIF_STACKSIZE_DEFAULT) + \
…
69
#endif
70
71
#ifdef __cplusplus
72
}
73
#endif
74
75
#endif
/* INIT_DEVS_H */
utils.h
Various helper macros.
conf.h
Configuration macros for Network interface API.
Generated on Thu Apr 3 2025 10:49:42 by
1.12.0