mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
edee3ee3cd
Closes: https://github.com/espressif/esp-idf/issues/9208 When I2S is configured into different modes, the slot sequence varies. This commit updates slot sequence tables and corresponding descriptions in (both code and programming guide).
23 lines
669 B
Plaintext
23 lines
669 B
Plaintext
menu "I2S PDM Example Configuration"
|
|
|
|
choice EXAMPLE_PDM_DIR
|
|
prompt "I2S PDM direction"
|
|
default EXAMPLE_PDM_TX
|
|
help
|
|
Select example PDM direction
|
|
|
|
config EXAMPLE_PDM_TX
|
|
bool "PDM TX"
|
|
help
|
|
PDM TX example will play 'twinkle twinkle little star' in three tones.
|
|
|
|
config EXAMPLE_PDM_RX
|
|
bool "PDM RX"
|
|
# ESP32-C3 not support PDM RX for now, its hardware does not fully supported PDM RX mode
|
|
depends on !IDF_TARGET_ESP32C3
|
|
help
|
|
PDM RX example will show the received data from a PDM microphone.
|
|
endchoice
|
|
|
|
endmenu
|