ESP-IDF
+
0
/1 examples
SourceVu will show references to
NET_BUF_SIMPLE_DEFINE_STATIC
from the following samples and libraries:
sensor_server 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_STATIC
NET_BUF_SIMPLE_DEFINE_STATIC macro
@def NET_BUF_SIMPLE_DEFINE_STATIC Define a static net_buf_simple variable. This is a helper macro which is used to define a static net_buf_simple object.
Syntax
Show:
Summary
Declaration
from
buf.h:73
#define
NET_BUF_SIMPLE_DEFINE_STATIC
(
_name
,
_size
)
\
static
uint8_t
net_buf_data_
##
_name
[
_size
]
;
\
static
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_STATIC
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