mirror of
https://gitee.com/Vancouver2017/luban-lite-t3e-pro.git
synced 2025-12-14 18:38:55 +00:00
43 lines
981 B
Plaintext
43 lines
981 B
Plaintext
|
|
source "bsp/peripheral/spinand/Kconfig"
|
|
source "bsp/peripheral/spinor_sfud/Kconfig"
|
|
source "bsp/peripheral/nftl/Kconfig"
|
|
source "bsp/peripheral/bt/Kconfig"
|
|
source "bsp/peripheral/camera/Kconfig"
|
|
#--------------------------------------------
|
|
# touch panel driver global option
|
|
#--------------------------------------------
|
|
|
|
menuconfig AIC_USING_TOUCH
|
|
bool "Touch Panel Support"
|
|
|
|
if AIC_USING_TOUCH
|
|
choice
|
|
prompt "Select touch device"
|
|
default AIC_USING_CTP
|
|
|
|
config AIC_USING_CTP
|
|
bool "CTP"
|
|
|
|
config AIC_USING_RTP
|
|
bool "RTP"
|
|
select AIC_RTP_DRV
|
|
endchoice
|
|
|
|
if AIC_USING_CTP
|
|
source "bsp/peripheral/touch/Kconfig"
|
|
endif
|
|
|
|
if AIC_USING_RTP
|
|
source "bsp/peripheral/touch/rtp/Kconfig"
|
|
endif
|
|
endif
|
|
|
|
#--------------------------------------------
|
|
# Audio Codec driver option
|
|
#--------------------------------------------
|
|
|
|
menu "External Audio Codec Support"
|
|
source "bsp/peripheral/codec/Kconfig"
|
|
endmenu
|