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
Raspberry Pi Pico SDK and Examples
FreeRTOS
tmrTimerControl::ucStatus
tmrTimerControl::ucStatus field
Holds bits to say if the timer was statically allocated or not, and if it is active or not.
Syntax
Show:
Summary
Declaration
from
timers.c:93
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:93
pxNewTimer
->
ucStatus
=
0x00
;
timers.c:356
xTimerCreate()
pxNewTimer
->
ucStatus
|=
(
uint8_t
)
tmrSTATUS_IS_AUTORELOAD
;
timers.c:441
prvInitialiseNewTimer()
pxTimer
->
ucStatus
|=
(
uint8_t
)
tmrSTATUS_IS_AUTORELOAD
;
timers.c:583
vTimerSetReloadMode()
pxTimer
->
ucStatus
&=
(
(
uint8_t
)
~
tmrSTATUS_IS_AUTORELOAD
)
;
timers.c:587
vTimerSetReloadMode()
if
(
(
pxTimer
->
ucStatus
&
tmrSTATUS_IS_AUTORELOAD
)
==
0U
)
timers.c:606
xTimerGetReloadMode()
if
(
(
pxTimer
->
ucStatus
&
tmrSTATUS_IS_AUTORELOAD
)
!=
0U
)
timers.c:733
prvProcessExpiredTimer()
pxTimer
->
ucStatus
&=
(
(
uint8_t
)
~
tmrSTATUS_IS_ACTIVE
)
;
timers.c:739
prvProcessExpiredTimer()
pxTimer
->
ucStatus
|=
(
uint8_t
)
tmrSTATUS_IS_ACTIVE
;
timers.c:1004
prvProcessReceivedCommands()
if
(
(
pxTimer
->
ucStatus
&
tmrSTATUS_IS_AUTORELOAD
)
!=
0U
)
timers.c:1010
prvProcessReceivedCommands()
pxTimer
->
ucStatus
&=
(
(
uint8_t
)
~
tmrSTATUS_IS_ACTIVE
)
;
timers.c:1016
prvProcessReceivedCommands()
pxTimer
->
ucStatus
&=
(
(
uint8_t
)
~
tmrSTATUS_IS_ACTIVE
)
;
timers.c:1033
prvProcessReceivedCommands()
pxTimer
->
ucStatus
|=
(
uint8_t
)
tmrSTATUS_IS_ACTIVE
;
timers.c:1038
prvProcessReceivedCommands()
if
(
(
pxTimer
->
ucStatus
&
tmrSTATUS_IS_STATICALLY_ALLOCATED
)
==
(
uint8_t
)
0
)
timers.c:1057
prvProcessReceivedCommands()
pxTimer
->
ucStatus
&=
(
(
uint8_t
)
~
tmrSTATUS_IS_ACTIVE
)
;
timers.c:1063
prvProcessReceivedCommands()
if
(
(
pxTimer
->
ucStatus
&
tmrSTATUS_IS_ACTIVE
)
==
0U
)
timers.c:1174
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 6 functions:
xTimerCreate()
prvInitialiseNewTimer()
vTimerSetReloadMode()
prvProcessExpiredTimer()
prvProcessReceivedCommands()
All items filtered out
tmrTimerControl::ucStatus
prvInitialiseNewTimer()
vTimerSetReloadMode()
xTimerGetReloadMode()
prvProcessExpiredTimer()
prvProcessReceivedCommands()
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