FreeRTOS
tmrTimerControl::ucStatus
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
tmrTimerControl::ucStatus
tmrTimerControl::ucStatus field
Syntax
Show:
Summary
Declaration
from
timers.c:83
uint8_t
ucStatus
;
Examples
References
from
examples
Code
Location
Referrer
uint8_t
ucStatus
;
/*<< Holds bits to say if the timer was statically allocated or not, and if it is active or not. */
timers.c:83
pxNewTimer
->
ucStatus
=
0x00
;
timers.c:297
xTimerCreate()
pxNewTimer
->
ucStatus
|=
tmrSTATUS_IS_AUTORELOAD
;
timers.c:374
prvInitialiseNewTimer()
pxTimer
->
ucStatus
|=
tmrSTATUS_IS_AUTORELOAD
;
timers.c:451
vTimerSetReloadMode()
pxTimer
->
ucStatus
&=
~
tmrSTATUS_IS_AUTORELOAD
;
timers.c:455
vTimerSetReloadMode()
if
(
(
pxTimer
->
ucStatus
&
tmrSTATUS_IS_AUTORELOAD
)
==
0
)
timers.c:470
uxTimerGetReloadMode()
if
(
(
pxTimer
->
ucStatus
&
tmrSTATUS_IS_AUTORELOAD
)
!=
0
)
timers.c:519
prvProcessExpiredTimer()
pxTimer
->
ucStatus
&=
~
tmrSTATUS_IS_ACTIVE
;
timers.c:539
prvProcessExpiredTimer()
pxTimer
->
ucStatus
|=
tmrSTATUS_IS_ACTIVE
;
timers.c:801
prvProcessReceivedCommands()
if
(
(
pxTimer
->
ucStatus
&
tmrSTATUS_IS_AUTORELOAD
)
!=
0
)
timers.c:809
prvProcessReceivedCommands()
pxTimer
->
ucStatus
&=
~
tmrSTATUS_IS_ACTIVE
;
timers.c:829
prvProcessReceivedCommands()
pxTimer
->
ucStatus
|=
tmrSTATUS_IS_ACTIVE
;
timers.c:834
prvProcessReceivedCommands()
if
(
(
pxTimer
->
ucStatus
&
tmrSTATUS_IS_STATICALLY_ALLOCATED
)
==
(
uint8_t
)
0
)
timers.c:853
prvProcessReceivedCommands()
pxTimer
->
ucStatus
&=
~
tmrSTATUS_IS_ACTIVE
;
timers.c:859
prvProcessReceivedCommands()
if
(
(
pxTimer
->
ucStatus
&
tmrSTATUS_IS_AUTORELOAD
)
!=
0
)
timers.c:907
prvSwitchTimerLists()
if
(
(
pxTimer
->
ucStatus
&
tmrSTATUS_IS_ACTIVE
)
==
0
)
timers.c:1002
xTimerIsTimerActive()
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
tmrTimerControl::ucStatus
is written by 5 functions and is read by 7 functions:
xTimerCreate()
prvInitialiseNewTimer()
vTimerSetReloadMode()
prvProcessExpiredTimer()
prvProcessReceivedCommands()
All items filtered out
tmrTimerControl::ucStatus
prvInitialiseNewTimer()
vTimerSetReloadMode()
uxTimerGetReloadMode()
prvProcessExpiredTimer()
prvProcessReceivedCommands()
prvSwitchTimerLists()
xTimerIsTimerActive()
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