Files
luban-lite/bsp/peripheral/codec/Kconfig
刘可亮 9f7ba67007 v1.0.3
2024-01-27 08:47:24 +08:00

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