ESP-IDF
ot::Timer
is only used within ESP-IDF.
Symbol previews are coming soon...
Symbols
loading...
Files
loading...
Summary
Syntax
Methods
Related
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
ESP-IDF Framework and Examples
ESP-IDF
ot::Timer
ot::Timer class
Implements a timer.
Syntax
Show:
Summary
Declaration
from
timer.hpp:123
class
Timer
:
public
InstanceLocator
,
public
LinkedListEntry
<
Timer
>
{
friend
class
LinkedListEntry
<
Timer
>
;
public
:
static
const
uint32_t
kMaxDelay
=
(
Time
::
kMaxDuration
>
>
1
)
;
typedef
void
(
&
Handler
)
(
Timer
&
aTimer
)
;
Time
GetFireTime
(
void
)
const
{
return
mFireTime
;
}
bool
IsRunning
(
void
)
const
{
return
(
mNext
!=
this
)
;
}
protected
:
class
Scheduler
:
public
InstanceLocator
,
private
NonCopyable
{
friend
class
Timer
;
protected
:
struct
AlarmApi
{
void
(
*
AlarmStartAt
)
(
otInstance
*
aInstance
,
uint32_t
aT0
,
uint32_t
aDt
)
;
void
(
*
AlarmStop
)
(
otInstance
*
aInstance
)
;
uint32_t
(
*
AlarmGetNow
)
(
void
)
;
}
;
explicit
Scheduler
(
Instance
&
aInstance
)
:
InstanceLocator
(
aInstance
)
{
}
void
Add
(
Timer
&
aTimer
,
const
AlarmApi
&
aAlarmApi
)
;
void
Remove
(
Timer
&
aTimer
,
const
AlarmApi
&
aAlarmApi
)
;
void
RemoveAll
(
const
AlarmApi
&
aAlarmApi
)
;
void
ProcessTimers
(
const
AlarmApi
&
aAlarmApi
)
;
void
SetAlarm
(
const
AlarmApi
&
aAlarmApi
)
;
LinkedList
<
Timer
>
mTimerList
;
}
;
Timer
(
Instance
&
aInstance
,
Handler
aHandler
)
:
InstanceLocator
(
aInstance
)
,
mHandler
(
aHandler
)
,
mNext
(
this
)
{
}
bool
DoesFireBefore
(
const
Timer
&
aSecondTimer
,
Time
aNow
)
const
;
void
Fired
(
void
)
{
mHandler
(
*
this
)
;
}
Handler
mHandler
;
Time
mFireTime
;
Timer
*
mNext
;
}
;
Fields
Field
Description
Declared as
ot::Timer::kMaxDelay
This constant defines maximum delay allowed when starting a timer.
ot::Timer::mHandler
Handler
ot::Timer::mFireTime
Time
ot::Timer::mNext
Timer
*
Methods
GetFireTime() const
Returns the fire time of the timer.
IsRunning() const
Indicates whether or not the timer instance is running.
DoesFireBefore() const
Fired()
Related Functions
Found 14 other functions taking a
Timer
argument:
Function
ot::TrickleTimer::HandleTimer()
ot::Timer::Scheduler::Remove()
ot::MeshCoP::SecureTransport::HandleTimer()
ot::Coap::ResponsesQueue::HandleTimer()
ot::Cli::Interpreter::HandleTimer()
ot::Timer::Scheduler::Add()
ot::MeshCoP::ActiveDatasetManager::HandleTimer()
ot::MeshCoP::PendingDatasetManager::HandleTimer()
ot::Coap::CoapBase::HandleRetransmissionTimer()
ot::AnnounceSender::HandleTimer()
ot::AnnounceBeginServer::HandleTimer()
ot::Timer::DoesFireBefore() const
ot::TimerMilliIn::HandleTimer()
ot::TimerMicroIn::HandleTimer()
Examples
References
from
examples
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
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