mirror of
https://gitee.com/Vancouver2017/luban-lite.git
synced 2025-12-24 13:08:55 +00:00
25 lines
505 B
Plaintext
25 lines
505 B
Plaintext
config AIC_I2S_CODEC_SELECT
|
|
bool "Select external audio codec"
|
|
default n
|
|
|
|
if AIC_I2S_CODEC_SELECT
|
|
choice
|
|
prompt "Select external codec"
|
|
default AIC_I2S_CODEC_ES8388
|
|
|
|
config AIC_I2S_CODEC_ES8388
|
|
bool "es8388"
|
|
|
|
config AIC_I2S_CODEC_TLV320
|
|
bool "tlv320aic3101"
|
|
endchoice
|
|
endif
|
|
|
|
if AIC_I2S_CODEC_ES8388
|
|
source "bsp/peripheral/codec/es8388/Kconfig"
|
|
endif
|
|
|
|
if AIC_I2S_CODEC_TLV320
|
|
source "bsp/peripheral/codec/tlv320aic3101/Kconfig"
|
|
endif
|