ESP-IDF
timer_obj_t
is only used within ESP-IDF.
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
ESP-IDF Framework and Examples
ESP-IDF
timer_obj_t
timer_obj_t struct
Syntax
Show:
Summary
Declaration
from
timer_legacy.c:52
typedef
struct
{
timer_hal_context_t
hal
;
timer_isr_func_t
timer_isr_fun
;
timer_src_clk_t
clk_src
;
gptimer_count_direction_t
direction
;
uint32_t
divider
;
uint64_t
alarm_value
;
bool
alarm_en
;
bool
auto_reload_en
;
bool
counter_en
;
}
timer_obj_t
;
Fields
Field
Declared as
timer_obj_t::hal
timer_hal_context_t
timer_obj_t::timer_isr_fun
timer_isr_func_t
timer_obj_t::clk_src
timer_src_clk_t
timer_obj_t::direction
gptimer_count_direction_t
timer_obj_t::divider
uint32_t
timer_obj_t::alarm_value
uint64_t
timer_obj_t::alarm_en
bool
timer_obj_t::auto_reload_en
bool
timer_obj_t::counter_en
bool
Examples
References
from
examples
Code
Location
Referrer
typedef
struct
{
timer_legacy.c:52
}
timer_obj_t
;
timer_legacy.c:62
timer_obj_t
static
timer_obj_t
*
p_timer_obj
[
TIMER_GROUP_MAX
]
[
TIMER_MAX
]
=
{
0
}
;
timer_legacy.c:64
timer_obj_t
*
timer_obj
=
(
timer_obj_t
*
)
arg
;
timer_legacy.c:208
timer_isr_default()
p_timer_obj
[
group_num
]
[
timer_num
]
=
(
timer_obj_t
*
)
heap_caps_calloc
(
1
,
sizeof
(
timer_obj_t
)
,
MALLOC_CAP_INTERNAL
|
MALLOC_CAP_8BIT
)
;
timer_legacy.c:311
timer_init()
free
(
p_timer_obj
[
group_num
]
[
timer_num
]
)
;
timer_legacy.c:379
timer_deinit()
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
Instance
Scope
Location
Project
p_timer_obj
timer_legacy.c:64
Lifecycle
from
examples
timer_obj_t
is freed by 1 symbol:
All items filtered out
timer_obj_t
timer_deinit()
All items filtered out