2023-08-30 16:21:18 +08:00
|
|
|
|
|
|
|
|
source "bsp/peripheral/spinand/Kconfig"
|
|
|
|
|
source "bsp/peripheral/spinor_sfud/Kconfig"
|
2023-11-30 19:48:02 +08:00
|
|
|
source "bsp/peripheral/nftl/Kconfig"
|
2024-09-30 17:06:01 +08:00
|
|
|
source "bsp/peripheral/bt/Kconfig"
|
|
|
|
|
source "bsp/peripheral/camera/Kconfig"
|
2023-08-30 16:21:18 +08:00
|
|
|
#--------------------------------------------
|
|
|
|
|
# touch panel driver global option
|
|
|
|
|
#--------------------------------------------
|
|
|
|
|
|
2024-09-03 11:16:08 +08:00
|
|
|
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
|
2023-08-30 16:21:18 +08:00
|
|
|
|
2025-01-08 19:12:06 +08:00
|
|
|
#--------------------------------------------
|
|
|
|
|
# External RTC Driver Option
|
|
|
|
|
#--------------------------------------------
|
|
|
|
|
|
|
|
|
|
menuconfig AIC_USING_EXTERNAL_RTC
|
|
|
|
|
bool "External RTC Driver Option"
|
|
|
|
|
|
|
|
|
|
if AIC_USING_EXTERNAL_RTC
|
|
|
|
|
source "bsp/peripheral/rtc/Kconfig"
|
|
|
|
|
endif
|
|
|
|
|
|
2025-07-22 11:15:46 +08:00
|
|
|
#--------------------------------------------
|
|
|
|
|
# Encoder driver option
|
|
|
|
|
#--------------------------------------------
|
|
|
|
|
|
|
|
|
|
menuconfig AIC_USING_ENCODER
|
|
|
|
|
bool "External encoder Driver Option"
|
|
|
|
|
|
|
|
|
|
if AIC_USING_ENCODER
|
|
|
|
|
source "bsp/peripheral/encoder/Kconfig"
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
#--------------------------------------------
|
|
|
|
|
# Gyro driver option
|
|
|
|
|
#--------------------------------------------
|
|
|
|
|
|
|
|
|
|
menuconfig AIC_USING_GYRO
|
|
|
|
|
bool "External gyro Driver Option"
|
|
|
|
|
|
|
|
|
|
if AIC_USING_GYRO
|
|
|
|
|
source "bsp/peripheral/gyro/Kconfig"
|
|
|
|
|
endif
|
|
|
|
|
|
2023-08-30 16:21:18 +08:00
|
|
|
#--------------------------------------------
|
|
|
|
|
# Audio Codec driver option
|
|
|
|
|
#--------------------------------------------
|
|
|
|
|
|
|
|
|
|
menu "External Audio Codec Support"
|
|
|
|
|
source "bsp/peripheral/codec/Kconfig"
|
|
|
|
|
endmenu
|