2022-07-04 23:22:27 -04:00
|
|
|
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"
|
2022-11-14 03:28:00 -05:00
|
|
|
depends on SOC_I2S_SUPPORTS_PDM_TX
|
2022-07-04 23:22:27 -04:00
|
|
|
help
|
|
|
|
PDM TX example will play 'twinkle twinkle little star' in three tones.
|
|
|
|
|
|
|
|
config EXAMPLE_PDM_RX
|
|
|
|
bool "PDM RX"
|
2022-11-14 03:28:00 -05:00
|
|
|
depends on SOC_I2S_SUPPORTS_PDM_RX
|
2022-07-04 23:22:27 -04:00
|
|
|
help
|
|
|
|
PDM RX example will show the received data from a PDM microphone.
|
|
|
|
endchoice
|
|
|
|
|
|
|
|
endmenu
|