ESP-IDF
I2S_CHAN_STATE_RUNNING
is only used within ESP-IDF.
Symbol previews are coming soon...
Symbols
loading (4/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_CHAN_STATE_RUNNING
I2S_CHAN_STATE_RUNNING value
i2s channel is idling (initialized and enabled)
Syntax
Show:
Summary
Declaration
from
i2s_private.h:74
I2S_CHAN_STATE_RUNNING
;
Examples
References
from
examples
Code
Location
Referrer
I2S_CHAN_STATE_RUNNING
,
/*!< i2s channel is idling (initialized and enabled) */
i2s_private.h:74
ESP_GOTO_ON_FALSE
(
handle
->
state
<
I2S_CHAN_STATE_RUNNING
,
ESP_ERR_INVALID_STATE
,
err
,
TAG
,
"invalid state, I2S has enabled"
)
;
i2s_common.c:409
i2s_channel_register_event_callback()
ESP_RETURN_ON_FALSE
(
handle
->
state
<
I2S_CHAN_STATE_RUNNING
,
ESP_ERR_INVALID_STATE
,
TAG
,
"the channel can't be deleted unless it is disabled"
)
;
i2s_common.c:1029
i2s_del_channel()
handle
->
state
=
I2S_CHAN_STATE_RUNNING
;
i2s_common.c:1170
i2s_channel_enable()
while
(
size
>
0
&&
handle
->
state
==
I2S_CHAN_STATE_RUNNING
)
{
i2s_common.c:1288
i2s_channel_write()
while
(
size
>
0
&&
handle
->
state
==
I2S_CHAN_STATE_RUNNING
)
{
i2s_common.c:1333
i2s_channel_read()
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
I2S_CHAN_STATE_RUNNING
is read by 5 functions:
All items filtered out
I2S_CHAN_STATE_RUNNING
i2s_channel_register_event_callback()
i2s_del_channel()
i2s_channel_enable()
i2s_channel_write()
i2s_channel_read()
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