ESP-IDF
i2s_channel_obj_t::callbacks
is only used within ESP-IDF.
Symbol previews are coming soon...
Symbols
loading (1/5)...
Files
loading (4/5)...
Summary
Syntax
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
ESP-IDF Framework and Examples
ESP-IDF
i2s_channel_obj_t::callbacks
i2s_channel_obj_t::callbacks field
Callback functions
Syntax
Show:
Summary
Declaration
from
i2s_private.h:177
i2s_event_callbacks_internal_t
callbacks
;
Examples
References
from
examples
Code
Location
Referrer
i2s_event_callbacks_internal_t
callbacks
;
/*!< Callback functions */
i2s_private.h:177
new_chan
->
callbacks
.
on_recv
=
NULL
;
i2s_common.c:341
i2s_register_channel()
new_chan
->
callbacks
.
on_recv_q_ovf
=
NULL
;
i2s_common.c:342
i2s_register_channel()
new_chan
->
callbacks
.
on_sent
=
NULL
;
i2s_common.c:343
i2s_register_channel()
new_chan
->
callbacks
.
on_send_q_ovf
=
NULL
;
i2s_common.c:344
i2s_register_channel()
memcpy
(
&
(
handle
->
callbacks
)
,
callbacks
,
sizeof
(
i2s_event_callbacks_t
)
)
;
i2s_common.c:410
i2s_channel_register_event_callback()
if
(
handle
->
callbacks
.
on_recv
)
{
i2s_common.c:682
i2s_dma_rx_callback()
user_need_yield
|=
handle
->
callbacks
.
on_recv
(
handle
,
&
evt
,
handle
->
user_data
)
;
i2s_common.c:683
i2s_dma_rx_callback()
if
(
handle
->
callbacks
.
on_recv_q_ovf
)
{
i2s_common.c:687
i2s_dma_rx_callback()
user_need_yield
|=
handle
->
callbacks
.
on_recv_q_ovf
(
handle
,
&
evt
,
handle
->
user_data
)
;
i2s_common.c:690
i2s_dma_rx_callback()
if
(
handle
->
callbacks
.
on_sent
)
{
i2s_common.c:727
i2s_dma_tx_callback()
user_need_yield
|=
handle
->
callbacks
.
on_sent
(
handle
,
&
evt
,
handle
->
user_data
)
;
i2s_common.c:728
i2s_dma_tx_callback()
if
(
handle
->
callbacks
.
on_send_q_ovf
)
{
i2s_common.c:732
i2s_dma_tx_callback()
user_need_yield
|=
handle
->
callbacks
.
on_send_q_ovf
(
handle
,
&
evt
,
handle
->
user_data
)
;
i2s_common.c:734
i2s_dma_tx_callback()
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
i2s_channel_obj_t::callbacks
is read by 4 functions:
All items filtered out
i2s_channel_obj_t::callbacks
i2s_register_channel()
i2s_channel_register_event_callback()
i2s_dma_rx_callback()
i2s_dma_tx_callback()
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