KConfig 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. menu "Device Drivers"
  2. config RT_USING_SERIAL
  3. bool "Using serial device drivers"
  4. default y
  5. config RT_USING_CAN
  6. bool "Using CAN device drivers"
  7. default n
  8. config RT_USING_HWTIMER
  9. bool "Using hardware timer device drivers"
  10. default n
  11. config RT_USING_I2C
  12. bool "Using I2C device drivers"
  13. default n
  14. config RT_USING_PIN
  15. bool "Using generic GPIO device drivers"
  16. default y
  17. config RT_USING_MTD_NOR
  18. bool "Using MTD Nor Flash device drivers"
  19. default n
  20. config RT_USING_MTD_NAND
  21. bool "Using MTD Nand Flash device drivers"
  22. default n
  23. config RT_USING_RTC
  24. bool "Using RTC device drivers"
  25. default n
  26. config RT_USING_SDIO
  27. bool "Using SD/MMC device drivers"
  28. default n
  29. config RT_USING_SPI
  30. bool "Using SPI Bus/Device device drivers"
  31. default n
  32. if RT_USING_SPI
  33. config RT_USING_W25QXX
  34. bool "Using W25QXX SPI NorFlash"
  35. default n
  36. config RT_USING_GD
  37. bool "Using GD SPI NorFlash"
  38. default n
  39. config RT_USING_ENC28J60
  40. bool "Using ENC28J60 SPI Ethernet network interface"
  41. select RT_USING_LWIP
  42. default n
  43. config RT_USING_SPI_WIFI
  44. bool "Using RW009/007 SPI Wi-Fi wireless interface"
  45. select RT_USING_LWIP
  46. default n
  47. endif
  48. config RT_USING_WDT
  49. bool "Using Watch Dog device drivers"
  50. default n
  51. config RT_USING_USB_HOST
  52. bool "Using USB host"
  53. default n
  54. if RT_USING_USB_HOST
  55. config RT_USBH_ADK
  56. bool "Enable connected with Android by ADK USB"
  57. default n
  58. endif
  59. config RT_USING_USB_DEVICE
  60. bool "Using USB device"
  61. default n
  62. if RT_USING_USB_DEVICE
  63. config RT_USB_DEVICE_CDC
  64. bool "Enable to use device as CDC device"
  65. default n
  66. config RT_USB_DEVICE_MSTORAGE
  67. bool "Enable to use device as Mass Storage device"
  68. default n
  69. endif
  70. endmenu