FreeRTOS
xTimerQueue
is only used within FreeRTOS.
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
Raspberry Pi Pico SDK and Examples
FreeRTOS
xTimerQueue
xTimerQueue variable
Syntax
Show:
Summary
Declaration
from
timers.c:149
static
QueueHandle_t
xTimerQueue
=
NULL
;
Examples
References
from
examples
Code
Location
Referrer
PRIVILEGED_DATA
static
QueueHandle_t
xTimerQueue
=
NULL
;
timers.c:149
if
(
xTimerQueue
!=
NULL
)
timers.c:249
xTimerCreateTimerTask()
if
(
xTimerQueue
!=
NULL
)
timers.c:465
xTimerGenericCommandFromTask()
xReturn
=
xQueueSendToBack
(
xTimerQueue
,
&
xMessage
,
xTicksToWait
)
;
timers.c:478
xTimerGenericCommandFromTask()
xReturn
=
xQueueSendToBack
(
xTimerQueue
,
&
xMessage
,
tmrNO_DELAY
)
;
timers.c:482
xTimerGenericCommandFromTask()
if
(
xTimerQueue
!=
NULL
)
timers.c:516
xTimerGenericCommandFromISR()
xReturn
=
xQueueSendToBackFromISR
(
xTimerQueue
,
&
xMessage
,
pxHigherPriorityTaskWoken
)
;
timers.c:527
xTimerGenericCommandFromISR()
vQueueWaitForMessageRestricted
(
xTimerQueue
,
(
xNextExpireTime
-
xTimeNow
)
,
xListWasEmpty
)
;
timers.c:820
prvProcessTimerOrBlockTask()
while
(
xQueueReceive
(
xTimerQueue
,
&
xMessage
,
tmrNO_DELAY
)
!=
pdFAIL
)
timers.c:945
prvProcessReceivedCommands()
if
(
xTimerQueue
==
NULL
)
timers.c:1118
prvCheckForValidListAndQueue()
xTimerQueue
=
xQueueCreate
(
(
UBaseType_t
)
configTIMER_QUEUE_LENGTH
,
(
UBaseType_t
)
sizeof
(
DaemonTaskMessage_t
)
)
;
timers.c:1136
prvCheckForValidListAndQueue()
if
(
xTimerQueue
!=
NULL
)
timers.c:1142
prvCheckForValidListAndQueue()
vQueueAddToRegistry
(
xTimerQueue
,
"TmrQ"
)
;
timers.c:1144
prvCheckForValidListAndQueue()
xReturn
=
xQueueSendFromISR
(
xTimerQueue
,
&
xMessage
,
pxHigherPriorityTaskWoken
)
;
timers.c:1250
xTimerPendFunctionCallFromISR()
configASSERT
(
xTimerQueue
)
;
timers.c:1276
xTimerPendFunctionCall()
xReturn
=
xQueueSendToBack
(
xTimerQueue
,
&
xMessage
,
xTicksToWait
)
;
timers.c:1285
xTimerPendFunctionCall()
xTimerQueue
=
NULL
;
timers.c:1332
vTimerResetState()
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
xTimerQueue
is written by 2 functions and is read by 8 functions:
prvCheckForValidListAndQueue()
vTimerResetState()
All items filtered out
xTimerQueue
xTimerCreateTimerTask()
xTimerGenericCommandFromTask()
xTimerGenericCommandFromISR()
prvProcessTimerOrBlockTask()
prvProcessReceivedCommands()
prvCheckForValidListAndQueue()
xTimerPendFunctionCallFromISR()
xTimerPendFunctionCall()
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