| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135 |
- menu "Hardware Drivers Config"
- menu "On-chip Peripheral Drivers"
- source "$(BSP_DIR)/../libraries/n9h30/rtt_port/Kconfig"
- endmenu
- menu "On-board Peripheral Drivers"
- config BSP_USING_CONSOLE
- bool "Enable UART0 for RTT Console(uart0)"
- select BSP_USING_UART
- select BSP_USING_UART0
- default y
- config BOARD_USING_IP101GR
- bool "Enable ethernet phy supporting(over emac/mdio)"
- select BSP_USING_EMAC
- select BSP_USING_EMAC0
- select BSP_USING_EMAC1
- default n
- config BOARD_USING_NAU8822
- bool "NAU8822 Audio Codec supporting(over i2s, i2c0)"
- select NU_PKG_USING_NAU8822
- select BSP_USING_I2C0
- select BSP_USING_I2S
- select BSP_USING_I2S0
- default n
- config BOARD_USING_STORAGE_SDCARD
- bool "SDCARD supporting(over sdh_p0)"
- select BSP_USING_SDH
- select BSP_USING_SDH0
- default y
- config BOARD_USING_STORAGE_SPIFLASH
- bool "SPIFLASH supporting(over qspi0)"
- select BSP_USING_QSPI
- select BSP_USING_QSPI0
- default y
- config BOARD_USING_BUZZER
- bool "BUZZER.(over pwm0_ch1)"
- select BSP_USING_PWM
- select BSP_USING_PWM0
- default n
- config BOARD_USING_USB0_DEVICE_HOST
- select BSP_USING_USBH
- select BSP_USING_USBD
- bool "Enable USB0 Device/Host"
- help
- Choose this option if you need USB device or host function mode.
- If you need USB host, please remember short to ground on JP1 jumper.
- config BOARD_USING_USB1_HOST
- select BSP_USING_USBH
- bool "Enable USB1 Host"
- help
- Choose this option if you need USB1 HOST.
- endmenu
- menu "Board extended module drivers"
- config BOARD_USING_LCM
- bool "Use LCD panel."
- default y
- if BOARD_USING_LCM
- choice
- prompt "Select LCD panel devices.(Over VPOST)"
- default BOARD_USING_LCM_FW070TFT_WVGA
- config BOARD_USING_LCM_FW070TFT_WVGA
- bool "NuDesign TFT-LCD7-WVGA"
- select BSP_USING_VPOST
- select LCM_USING_FW070TFT
- help
- Choose this option if you use 7" 800x480x32b LCD panel.
- config BOARD_USING_LCM_FW043TFT_HVGA
- bool "NuDesign TFT-LCD43-HVGA"
- select BSP_USING_VPOST
- select LCM_USING_FW043TFT
- help
- Choose this option if you use 4.3" 480x272x32b LCD panel.
- config BOARD_USING_LCM_FW070TFT_WSVGA
- bool "NuDesign TFT-LCD7-WSVGA"
- select BSP_USING_VPOST
- select LCM_USING_FW070TFT_WSVGA
- help
- Choose this option if you use 7" 1024x600x32b LCD panel.
- endchoice
- choice
- prompt "Select Touch devices."
- default BOARD_USING_ADCTOUCH
- config BOARD_USING_ADCTOUCH
- bool "ADC touching"
- select BSP_USING_ADC_TOUCH
- select NU_PKG_USING_ADC_TOUCH
- help
- Choose this option if you use internal ADC touching function.
- config BOARD_USING_GT911
- bool "GT911 TSC"
- select BSP_USING_I2C
- select BSP_USING_I2C0
- select NU_PKG_USING_TPC
- select NU_PKG_USING_TPC_GT911
- help
- Choose this option if you use GT911 external TSC touching function.
- config BOARD_USING_FT5446
- bool "FT5446 TSC"
- select BSP_USING_I2C
- select BSP_USING_I2C0
- select NU_PKG_USING_TPC
- select NU_PKG_USING_TPC_FT5446
- help
- Choose this option if you use FT5446 external TSC touching function.
- endchoice
- endif
- endmenu
- source "$(BSP_DIR)/../libraries/nu_packages/Kconfig"
- endmenu
|