ESP-IDF
adv_queue
is only used within ESP-IDF.
Symbol previews are coming soon...
Symbols
loading (4/5)...
Files
loading (4/5)...
Summary
Syntax
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
ESP-IDF Framework and Examples
ESP-IDF
adv_queue
adv_queue variable
Syntax
Show:
Summary
Declaration
from
adv.c:61
static
struct
bt_mesh_queue
adv_queue
;
Examples
References
from
examples
Code
Location
Referrer
static
struct
bt_mesh_queue
adv_queue
;
adv.c:61
xQueueReceive
(
adv_queue
.
handle
,
&
msg
,
K_NO_WAIT
)
;
adv.c:280
adv_thread()
xQueueReceive
(
adv_queue
.
handle
,
&
msg
,
K_WAIT
(
timeout
)
)
;
adv.c:286
adv_thread()
xQueueReceive
(
adv_queue
.
handle
,
&
msg
,
portMAX_DELAY
)
;
adv.c:291
adv_thread()
if
(
adv_queue
.
handle
==
NULL
)
{
adv.c:461
bt_mesh_task_post()
if
(
xQueueSendToFront
(
adv_queue
.
handle
,
msg
,
timeout
)
!=
pdTRUE
)
{
adv.c:467
bt_mesh_task_post()
if
(
xQueueSend
(
adv_queue
.
handle
,
msg
,
timeout
)
!=
pdTRUE
)
{
adv.c:472
bt_mesh_task_post()
adv_queue
.
handle
=
xQueueCreate
(
BLE_MESH_ADV_QUEUE_SIZE
,
sizeof
(
bt_mesh_msg_t
)
)
;
adv.c:611
bt_mesh_adv_init()
__ASSERT
(
adv_queue
.
handle
,
"Failed to create queue"
)
;
adv.c:612
bt_mesh_adv_init()
if
(
adv_queue
.
handle
==
NULL
)
{
adv.c:678
bt_mesh_adv_deinit()
vQueueDelete
(
adv_queue
.
handle
)
;
adv.c:713
bt_mesh_adv_deinit()
adv_queue
.
handle
=
NULL
;
adv.c:714
bt_mesh_adv_deinit()
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
adv_queue
is read by 4 functions:
All items filtered out
adv_queue
adv_thread()
bt_mesh_task_post()
bt_mesh_adv_init()
bt_mesh_adv_deinit()
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