mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-19 11:03:31 +08:00
314 lines
8.4 KiB
Plaintext
314 lines
8.4 KiB
Plaintext
menu "Hardware Drivers Config"
|
|
|
|
config BSP_USING_HYPERFLASH
|
|
bool
|
|
default n
|
|
|
|
config SOC_MIMXRT1052DVL6B
|
|
bool
|
|
select SOC_MIMXRT1050_SERIES
|
|
select BSP_USING_HYPERFLASH
|
|
select RT_USING_COMPONENTS_INIT
|
|
select RT_USING_USER_MAIN
|
|
default y
|
|
|
|
menu "Onboard Peripheral Drivers"
|
|
|
|
config BSP_USING_POT
|
|
bool "Enable potentiometer"
|
|
select BSP_USING_ADC
|
|
select BSP_USING_ADC1
|
|
default n
|
|
|
|
endmenu
|
|
|
|
menu "On-chip Peripheral Drivers"
|
|
|
|
config BSP_USING_DMA
|
|
bool "Enable DMA"
|
|
default n
|
|
|
|
config BSP_USING_GPIO
|
|
bool "Enable GPIO"
|
|
select RT_USING_PIN
|
|
default y
|
|
|
|
menuconfig BSP_USING_LPUART
|
|
bool "Enable UART"
|
|
select RT_USING_SERIAL
|
|
default y
|
|
|
|
if BSP_USING_LPUART
|
|
config BSP_USING_LPUART1
|
|
bool "Enable LPUART1"
|
|
default y
|
|
|
|
config BSP_LPUART1_RX_USING_DMA
|
|
bool "Enable LPUART1 RX DMA"
|
|
depends on BSP_USING_LPUART1
|
|
select BSP_USING_DMA
|
|
select RT_SERIAL_USING_DMA
|
|
default n
|
|
|
|
config BSP_LPUART1_RX_DMA_CHANNEL
|
|
depends on BSP_LPUART1_RX_USING_DMA
|
|
int "Set LPUART1 RX DMA channel (0-32)"
|
|
default 0
|
|
|
|
config BSP_LPUART1_TX_USING_DMA
|
|
bool "Enable LPUART1 TX DMA"
|
|
depends on BSP_USING_LPUART1
|
|
select BSP_USING_DMA
|
|
select RT_SERIAL_USING_DMA
|
|
default n
|
|
|
|
config BSP_LPUART1_TX_DMA_CHANNEL
|
|
depends on BSP_LPUART1_TX_USING_DMA
|
|
int "Set LPUART1 TX DMA channel (0-32)"
|
|
default 1
|
|
|
|
config BSP_USING_LPUART3
|
|
bool "Enable LPUART3"
|
|
default n
|
|
|
|
config BSP_LPUART3_RX_USING_DMA
|
|
bool "Enable LPUART3 RX DMA"
|
|
depends on BSP_USING_LPUART3
|
|
select BSP_USING_DMA
|
|
select RT_SERIAL_USING_DMA
|
|
default n
|
|
|
|
config BSP_LPUART3_RX_DMA_CHANNEL
|
|
depends on BSP_LPUART3_RX_USING_DMA
|
|
int "Set LPUART3 RX DMA channel (0-32)"
|
|
default 0
|
|
|
|
config BSP_LPUART3_TX_USING_DMA
|
|
bool "Enable LPUART3 TX DMA"
|
|
depends on BSP_USING_LPUART3
|
|
select BSP_USING_DMA
|
|
select RT_SERIAL_USING_DMA
|
|
default n
|
|
|
|
config BSP_LPUART3_TX_DMA_CHANNEL
|
|
depends on BSP_LPUART3_TX_USING_DMA
|
|
int "Set LPUART3 TX DMA channel (0-32)"
|
|
default 1
|
|
endif
|
|
menuconfig BSP_USING_HWTIMER
|
|
bool "Enable GPT"
|
|
default n
|
|
select RT_USING_HWTIMER
|
|
if BSP_USING_HWTIMER
|
|
config BSP_USING_HWTIMER1
|
|
bool "Enable GPT1"
|
|
default n
|
|
|
|
config BSP_USING_HWTIMER2
|
|
bool "Enable GPT2"
|
|
default n
|
|
endif
|
|
|
|
menuconfig BSP_USING_PWM
|
|
bool "Enable PWM"
|
|
default n
|
|
select RT_USING_PWM
|
|
if BSP_USING_PWM
|
|
menuconfig BSP_USING_PWM1
|
|
bool "Enable output pwm1"
|
|
default n
|
|
if BSP_USING_PWM1
|
|
config BSP_USING_PWM1_CH3
|
|
bool "Enable PWM1 channel3"
|
|
default n
|
|
endif
|
|
|
|
menuconfig BSP_USING_PWM4
|
|
bool "Enable output pwm4"
|
|
default n
|
|
if BSP_USING_PWM4
|
|
config BSP_USING_PWM4_CH0
|
|
bool "Enable PWM4 channel0"
|
|
default n
|
|
|
|
config BSP_USING_PWM4_CH1
|
|
bool "Enable PWM4 channel1"
|
|
default n
|
|
endif
|
|
endif
|
|
menuconfig BSP_USING_SPI
|
|
bool "Enable SPI"
|
|
default n
|
|
select RT_USING_SPI
|
|
if BSP_USING_SPI
|
|
menuconfig BSP_USING_SPI1
|
|
bool "Enable SPI1"
|
|
default n
|
|
if BSP_USING_SPI1
|
|
config BSP_SPI1_USING_DMA
|
|
bool "Enable SPI1 DMA"
|
|
default n
|
|
endif
|
|
endif
|
|
|
|
menuconfig BSP_USING_I2C
|
|
bool "Enable I2C"
|
|
select RT_USING_I2C
|
|
default n
|
|
if BSP_USING_I2C
|
|
config BSP_USING_I2C1
|
|
bool "Enable I2C1"
|
|
default n
|
|
choice
|
|
prompt "Select I2C1 badurate"
|
|
default HW_I2C1_BADURATE_100kHZ
|
|
|
|
config HW_I2C1_BADURATE_100kHZ
|
|
bool "Badurate 100kHZ"
|
|
|
|
config HW_I2C1_BADURATE_400kHZ
|
|
bool "Badurate 400kHZ"
|
|
endchoice
|
|
endif
|
|
|
|
config BSP_USING_RTC
|
|
bool "Enable RTC"
|
|
select RT_USING_RTC
|
|
default n
|
|
|
|
menuconfig BSP_USING_ADC
|
|
bool "Enable ADC"
|
|
default n
|
|
select RT_USING_ADC
|
|
if BSP_USING_ADC
|
|
config BSP_USING_ADC1
|
|
bool "Enable ADC1"
|
|
default n
|
|
endif
|
|
|
|
config BSP_USING_ON_CHIP_FLASH
|
|
bool "Enable on-chip FLASH"
|
|
default n
|
|
|
|
menuconfig BSP_USING_WDT
|
|
bool "Enable Watchdog Timer"
|
|
select RT_USING_WDT
|
|
default n
|
|
if BSP_USING_WDT
|
|
config BSP_USING_WDT1
|
|
bool "Enable WDT1"
|
|
default n
|
|
config BSP_USING_WDT3
|
|
bool "Enable WDT3"
|
|
default n
|
|
endif
|
|
menuconfig BSP_USING_CAN
|
|
bool "Enable CAN"
|
|
select RT_USING_CAN
|
|
default n
|
|
if BSP_USING_CAN
|
|
config BSP_USING_CAN1"
|
|
bool "Enable CAN1"
|
|
default n
|
|
config BSP_USING_CAN2
|
|
bool "Enable CAN2"
|
|
default n
|
|
endif
|
|
|
|
endmenu
|
|
|
|
menu "Onboard Peripheral Drivers"
|
|
|
|
config BSP_USING_SDRAM
|
|
bool "Enable SDRAM"
|
|
default n
|
|
|
|
menuconfig BSP_USING_ETH
|
|
bool "Enable Ethernet"
|
|
select RT_USING_NETDEV
|
|
default n
|
|
|
|
menuconfig BSP_USING_SDIO
|
|
bool "Enable SDcard"
|
|
select RT_USING_SDIO
|
|
select RT_USING_DFS_DEVFS
|
|
select RT_USING_DFS
|
|
select RT_USING_DFS_ELMFAT
|
|
default n
|
|
|
|
if BSP_USING_ETH
|
|
config BSP_USING_PHY
|
|
select RT_USING_PHY
|
|
bool "Enable ethernet phy"
|
|
default y
|
|
|
|
if BSP_USING_PHY
|
|
config PHY_DEVICE_ADDRESS
|
|
int "Specify address of phy device"
|
|
default 2
|
|
|
|
config PHY_USING_KSZ8081
|
|
bool "i.MX RT1064EVK uses ksz8081 phy"
|
|
default y
|
|
|
|
if PHY_USING_KSZ8081
|
|
config PHY_RESET_PORT
|
|
int "indicate port of reset"
|
|
default 1
|
|
|
|
config PHY_RESET_PIN
|
|
int "indicate pin of reset"
|
|
default 9
|
|
|
|
config FSL_FEATURE_PHYKSZ8081_USE_RMII50M_MODE
|
|
bool "Enable the PHY ksz8081 RMII50M mode"
|
|
depends on PHY_USING_KSZ8081
|
|
default y
|
|
endif
|
|
|
|
endif
|
|
endif
|
|
config BSP_USING_RGB
|
|
bool "Enable RGB LED (PWM1_CH3A, PWM4_CH0A and PWM4_CH1A)"
|
|
select BSP_USING_PWM1
|
|
select BSP_USING_PWM4
|
|
select BSP_USING_PWM1_CH3
|
|
select BSP_USING_PWM4_CH0
|
|
select BSP_USING_PWM4_CH1
|
|
default n
|
|
|
|
config BSP_USING_AUDIO
|
|
bool "Enable AUDIO (WM8960)"
|
|
select BSP_USING_I2C1
|
|
select RT_USING_AUDIO
|
|
default n
|
|
|
|
if BSP_USING_AUDIO
|
|
menuconfig BSP_USING_AUDIO_PLAY
|
|
bool "Enable Audio Play"
|
|
default y
|
|
if BSP_USING_AUDIO_PLAY
|
|
config BSP_AUDIO_USING_DMA
|
|
bool "Enable AUDIO DMA"
|
|
default y
|
|
endif
|
|
|
|
menuconfig BSP_USING_AUDIO_RECORD
|
|
bool "Enable Audio Record"
|
|
select BSP_USING_AUDIO_PLAY
|
|
default n
|
|
if BSP_USING_AUDIO_RECORD
|
|
config BSP_AUDIO_USING_DMA
|
|
bool "Enable AUDIO DMA"
|
|
default n
|
|
endif
|
|
endif
|
|
|
|
endmenu
|
|
|
|
menu "Board extended module Drivers"
|
|
|
|
endmenu
|
|
|
|
endmenu
|