rt-thread/components/drivers/KConfig

127 lines
3.0 KiB
Plaintext
Raw Normal View History

2017-01-31 11:54:12 +08:00
menu "Device Drivers"
2017-06-06 18:18:44 +08:00
config RT_USING_DEVICE_IPC
bool "Using device drivers IPC"
default y
2017-01-31 11:54:12 +08:00
config RT_USING_SERIAL
2017-06-06 18:18:44 +08:00
bool "Using serial device drivers"
default y
2017-01-31 11:54:12 +08:00
config RT_USING_CAN
2017-06-06 18:18:44 +08:00
bool "Using CAN device drivers"
default n
2017-01-31 11:54:12 +08:00
config RT_USING_HWTIMER
2017-06-06 18:18:44 +08:00
bool "Using hardware timer device drivers"
default n
2017-01-31 11:54:12 +08:00
config RT_USING_I2C
2017-06-06 18:18:44 +08:00
bool "Using I2C device drivers"
default n
2017-10-09 15:12:42 +08:00
2017-10-09 11:30:30 +08:00
if RT_USING_I2C
config RT_USING_I2C_BITOPS
2017-10-09 15:12:42 +08:00
bool "Use GPIO to simulate I2C"
2017-10-09 11:30:30 +08:00
default y
endif
2017-01-31 11:54:12 +08:00
config RT_USING_PIN
2017-06-06 18:18:44 +08:00
bool "Using generic GPIO device drivers"
default y
2017-01-31 11:54:12 +08:00
config RT_USING_MTD_NOR
2017-06-06 18:18:44 +08:00
bool "Using MTD Nor Flash device drivers"
default n
2017-01-31 11:54:12 +08:00
config RT_USING_MTD_NAND
2017-06-06 18:18:44 +08:00
bool "Using MTD Nand Flash device drivers"
default n
2017-10-09 15:12:42 +08:00
if RT_USING_MTD_NAND
config RT_MTD_NAND_DEBUG
bool "Enable MTD Nand operations debug information"
default n
endif
2017-01-31 11:54:12 +08:00
config RT_USING_RTC
2017-06-06 18:18:44 +08:00
bool "Using RTC device drivers"
default n
2017-01-31 11:54:12 +08:00
config RT_USING_SDIO
2017-06-06 18:18:44 +08:00
bool "Using SD/MMC device drivers"
default n
2017-01-31 11:54:12 +08:00
config RT_USING_SPI
2017-06-06 18:18:44 +08:00
bool "Using SPI Bus/Device device drivers"
default n
2017-01-31 11:54:12 +08:00
2017-06-06 18:18:44 +08:00
if RT_USING_SPI
2017-09-29 16:57:17 +08:00
config RT_USING_SFUD
bool "Using Serial Flash Universal Driver"
default n
if RT_USING_SFUD
config RT_SFUD_USING_SFDP
bool "Using auto probe flash JEDEC SFDP parameter"
default y
config RT_SFUD_USING_FLASH_INFO_TABLE
bool "Using defined supported flash chip information table"
default y
config RT_SFUD_DEBUG
bool "Show more SFUD debug information"
default n
endif
2017-06-06 18:18:44 +08:00
config RT_USING_W25QXX
bool "Using W25QXX SPI NorFlash"
default n
2017-01-31 11:54:12 +08:00
2017-06-06 18:18:44 +08:00
config RT_USING_GD
bool "Using GD SPI NorFlash"
default n
2017-01-31 11:54:12 +08:00
2017-06-06 18:18:44 +08:00
config RT_USING_ENC28J60
bool "Using ENC28J60 SPI Ethernet network interface"
select RT_USING_LWIP
default n
2017-01-31 11:54:12 +08:00
2017-06-06 18:18:44 +08:00
config RT_USING_SPI_WIFI
bool "Using RW009/007 SPI Wi-Fi wireless interface"
select RT_USING_LWIP
default n
endif
2017-01-31 11:54:12 +08:00
config RT_USING_WDT
2017-06-06 18:18:44 +08:00
bool "Using Watch Dog device drivers"
default n
2017-01-31 11:54:12 +08:00
config RT_USING_USB_HOST
2017-06-06 18:18:44 +08:00
bool "Using USB host"
default n
2017-01-31 11:54:12 +08:00
2017-06-06 18:18:44 +08:00
if RT_USING_USB_HOST
config RT_USBH_ADK
bool "Enable connected with Android by ADK USB"
default n
endif
2017-01-31 11:54:12 +08:00
config RT_USING_USB_DEVICE
2017-06-06 18:18:44 +08:00
bool "Using USB device"
default n
if RT_USING_USB_DEVICE
config RT_USB_DEVICE_CDC
bool "Enable to use device as CDC device"
default n
config RT_USB_DEVICE_MSTORAGE
bool "Enable to use device as Mass Storage device"
default n
config RT_USB_DEVICE_HID
bool "Enable to use device as HID device"
default n
2017-06-06 18:18:44 +08:00
endif
2017-01-31 11:54:12 +08:00
endmenu