ESP-IDF
ot::TimerMilli::Scheduler
is only used within ESP-IDF.
Symbol previews are coming soon...
Symbols
loading...
Files
loading...
Summary
Syntax
Methods
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
ESP-IDF Framework and Examples
ESP-IDF
ot::TimerMilli::Scheduler
ot::TimerMilli::Scheduler class
Implements the millisecond timer scheduler.
Syntax
Show:
Summary
Declaration
from
timer.hpp:208
class
Scheduler
:
private
Timer
::
Scheduler
{
friend
class
TimerMilli
;
friend
void
otPlatAlarmMilliFired
(
otInstance
*
aInstance
)
;
public
:
explicit
Scheduler
(
Instance
&
aInstance
)
:
Timer
::
Scheduler
(
aInstance
)
{
}
private
:
void
Add
(
TimerMilli
&
aTimer
)
{
Timer
::
Scheduler
::
Add
(
aTimer
,
sAlarmMilliApi
)
;
}
void
Remove
(
TimerMilli
&
aTimer
)
{
Timer
::
Scheduler
::
Remove
(
aTimer
,
sAlarmMilliApi
)
;
}
void
RemoveAll
(
void
)
{
Timer
::
Scheduler
::
RemoveAll
(
sAlarmMilliApi
)
;
}
void
ProcessTimers
(
void
)
{
Timer
::
Scheduler
::
ProcessTimers
(
sAlarmMilliApi
)
;
}
static
const
AlarmApi
sAlarmMilliApi
;
}
;
Fields
Field
ot::TimerMilli::Scheduler::sAlarmMilliApi
Methods
Add()
Remove()
RemoveAll()
ProcessTimers()
Examples
References
from
examples
Code
Location
Scope
Referrer
class
Scheduler
:
private
Timer
::
Scheduler
timer.hpp:208
TimerMilli
::
Scheduler
mTimerMilliScheduler
;
instance.hpp:450
ot::Instance
ot::Instance::mTimerMilliScheduler
template
<
>
inline
TimerMilli
::
Scheduler
&
Instance
::
Get
(
void
)
{
return
mTimerMilliScheduler
;
}
instance.hpp:1095
ot::Instance
ot::Instance::Get()
const
Timer
::
Scheduler
::
AlarmApi
TimerMilli
::
Scheduler
::
sAlarmMilliApi
=
{
timer.cpp:59
Get
<
Scheduler
>
(
)
.
Add
(
*
this
)
;
timer.cpp:109
ot::TimerMilli::FireAt()
void
TimerMilli
::
Stop
(
void
)
{
Get
<
Scheduler
>
(
)
.
Remove
(
*
this
)
;
}
timer.cpp:140
ot::TimerMilli::Stop()
void
TimerMilli
::
RemoveAll
(
Instance
&
aInstance
)
{
aInstance
.
Get
<
Scheduler
>
(
)
.
RemoveAll
(
)
;
}
timer.cpp:142
ot::TimerMilli::RemoveAll()
AsCoreType
(
aInstance
)
.
Get
<
TimerMilli
::
Scheduler
>
(
)
.
ProcessTimers
(
)
;
timer.cpp:250
ot::otPlatAlarmMilliFired()
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
All items filtered out
All items filtered out
Class Tree
from
examples
ot::TimerMilli::Scheduler
is inherited by 1 classes:
All items filtered out
ot::TimerMilli::Scheduler
ot::Timer::Scheduler
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
Instance
Scope
Location
Project
ot::Instance::mTimerMilliScheduler
ot::Instance
instance.hpp:450
return
ot::Instance::Get()
instance.hpp:1095
Lifecycle
from
examples
All items filtered out
All items filtered out