ESP-IDF
+
0
/1 examples
SourceVu will show references to
NET_BUF_SIMPLE_DEFINE
from the following samples and libraries:
aligenie_demo sample
Symbol previews are coming soon...
Symbols
loading...
Files
loading...
Summary
Syntax
Arguments
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
ESP-IDF Framework and Examples
ESP-IDF
NET_BUF_SIMPLE_DEFINE
NET_BUF_SIMPLE_DEFINE macro
@def NET_BUF_SIMPLE_DEFINE Define a net_buf_simple stack variable. This is a helper macro which is used to define a net_buf_simple object on the stack.
Syntax
Show:
Summary
Declaration
from
buf.h:54
#define
NET_BUF_SIMPLE_DEFINE
(
_name
,
_size
)
\
uint8_t
net_buf_data_
##
_name
[
_size
]
;
\
struct
net_buf_simple
_name
=
{
\
.
data
=
net_buf_data_
##
_name
,
\
.
len
=
0
,
\
.
size
=
_size
,
\
.
__buf
=
net_buf_data_
##
_name
,
\
}
Arguments
Argument
Description
_name
Name of the net_buf_simple object.
_size
Maximum data storage for the buffer.
Examples
NET_BUF_SIMPLE_DEFINE
is referenced by 1 libraries and example projects:
References
from
examples
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
All items filtered out
All items filtered out
Class Tree
from
examples
All items filtered out
All items filtered out
Override Tree
from
examples
All items filtered out
All items filtered out
Implementations
from
examples
All items filtered out
All items filtered out
Instances
from
examples
Lifecycle
from
examples
All items filtered out
All items filtered out