ESP-IDF
s_task_queue
is only used within ESP-IDF.
Symbol previews are coming soon...
Symbols
loading...
Files
loading...
Summary
Syntax
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
ESP-IDF Framework and Examples
ESP-IDF
s_task_queue
s_task_queue variable
Syntax
Show:
Summary
Declaration
from
esp_openthread_task_queue.c:20
static
QueueHandle_t
s_task_queue
=
NULL
;
Examples
References
from
examples
Code
Location
Referrer
static
QueueHandle_t
s_task_queue
=
NULL
;
esp_openthread_task_queue.c:20
s_task_queue
=
xQueueCreate
(
config
->
port_config
.
task_queue_size
,
sizeof
(
task_storage_t
)
)
;
esp_openthread_task_queue.c:36
esp_openthread_task_queue_init()
ESP_RETURN_ON_FALSE
(
s_task_queue
!=
NULL
,
ESP_ERR_NO_MEM
,
OT_PLAT_LOG_TAG
,
esp_openthread_task_queue.c:37
esp_openthread_task_queue_init()
ESP_RETURN_ON_FALSE_ISR
(
xQueueSendFromISR
(
s_task_queue
,
&
task_storage
,
&
task_woken
)
,
ESP_FAIL
,
OT_PLAT_LOG_TAG
,
esp_openthread_task_queue.c:62
esp_openthread_task_queue_post()
ESP_RETURN_ON_FALSE
(
xQueueSend
(
s_task_queue
,
&
task_storage
,
OT_TASK_QUEUE_SENDING_WAIT_TIME
)
,
ESP_FAIL
,
OT_PLAT_LOG_TAG
,
esp_openthread_task_queue.c:65
esp_openthread_task_queue_post()
ESP_RETURN_ON_FALSE
(
s_task_queue
!=
NULL
,
ESP_ERR_INVALID_STATE
,
OT_PLAT_LOG_TAG
,
esp_openthread_task_queue.c:97
esp_openthread_task_queue_process()
while
(
xQueueReceive
(
s_task_queue
,
&
task_storage
,
0
)
==
pdTRUE
)
{
esp_openthread_task_queue.c:99
esp_openthread_task_queue_process()
if
(
s_task_queue
)
{
esp_openthread_task_queue.c:108
esp_openthread_task_queue_deinit()
vQueueDelete
(
s_task_queue
)
;
esp_openthread_task_queue.c:109
esp_openthread_task_queue_deinit()
s_task_queue
=
NULL
;
esp_openthread_task_queue.c:110
esp_openthread_task_queue_deinit()
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
s_task_queue
is written by 2 functions and is read by 4 functions:
esp_openthread_task_queue_init()
esp_openthread_task_queue_deinit()
All items filtered out
s_task_queue
esp_openthread_task_queue_init()
esp_openthread_task_queue_post()
esp_openthread_task_queue_process()
esp_openthread_task_queue_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