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
STM32 Libraries and Samples
FreeRTOS
xTimerQueue
xTimerQueue variable
Syntax
Show:
Summary
Declaration
from
timers.c:141
PRIVILEGED_DATA
static
QueueHandle_t
xTimerQueue
=
NULL
;
Examples
References
from
examples
Code
Location
Referrer
PRIVILEGED_DATA
static
QueueHandle_t
xTimerQueue
=
NULL
;
timers.c:141
if
(
xTimerQueue
!=
NULL
)
timers.c:237
xTimerCreateTimerTask()
if
(
xTimerQueue
!=
NULL
)
timers.c:390
xTimerGenericCommand()
xReturn
=
xQueueSendToBack
(
xTimerQueue
,
&
xMessage
,
xTicksToWait
)
;
timers.c:401
xTimerGenericCommand()
xReturn
=
xQueueSendToBack
(
xTimerQueue
,
&
xMessage
,
tmrNO_DELAY
)
;
timers.c:405
xTimerGenericCommand()
xReturn
=
xQueueSendToBackFromISR
(
xTimerQueue
,
&
xMessage
,
pxHigherPriorityTaskWoken
)
;
timers.c:410
xTimerGenericCommand()
vQueueWaitForMessageRestricted
(
xTimerQueue
,
(
xNextExpireTime
-
xTimeNow
)
,
xListWasEmpty
)
;
timers.c:620
prvProcessTimerOrBlockTask()
while
(
xQueueReceive
(
xTimerQueue
,
&
xMessage
,
tmrNO_DELAY
)
!=
pdFAIL
)
/*lint !e603 xMessage does not have to be initialised as it is passed out, not in, and it is not used unless xQueueReceive() returns pdTRUE. */
timers.c:741
prvProcessReceivedCommands()
if
(
xTimerQueue
==
NULL
)
timers.c:948
prvCheckForValidListAndQueue()
xTimerQueue
=
xQueueCreate
(
(
UBaseType_t
)
configTIMER_QUEUE_LENGTH
,
sizeof
(
DaemonTaskMessage_t
)
)
;
timers.c:966
prvCheckForValidListAndQueue()
if
(
xTimerQueue
!=
NULL
)
timers.c:972
prvCheckForValidListAndQueue()
vQueueAddToRegistry
(
xTimerQueue
,
"TmrQ"
)
;
timers.c:974
prvCheckForValidListAndQueue()
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
xTimerQueue
is written by 1 function and is read by 5 functions:
prvCheckForValidListAndQueue()
All items filtered out
xTimerQueue
xTimerCreateTimerTask()
xTimerGenericCommand()
prvProcessTimerOrBlockTask()
prvProcessReceivedCommands()
prvCheckForValidListAndQueue()
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