KConfig 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. menu "Device Drivers"
  2. config RT_USING_DEVICE_IPC
  3. bool "Using device drivers IPC"
  4. default y
  5. config RT_USING_SERIAL
  6. bool "Using serial device drivers"
  7. default y
  8. config RT_USING_CAN
  9. bool "Using CAN device drivers"
  10. default n
  11. config RT_USING_HWTIMER
  12. bool "Using hardware timer device drivers"
  13. default n
  14. config RT_USING_I2C
  15. bool "Using I2C device drivers"
  16. default n
  17. config RT_USING_PIN
  18. bool "Using generic GPIO device drivers"
  19. default y
  20. config RT_USING_MTD_NOR
  21. bool "Using MTD Nor Flash device drivers"
  22. default n
  23. config RT_USING_MTD_NAND
  24. bool "Using MTD Nand Flash device drivers"
  25. default n
  26. config RT_USING_RTC
  27. bool "Using RTC device drivers"
  28. default n
  29. config RT_USING_SDIO
  30. bool "Using SD/MMC device drivers"
  31. default n
  32. config RT_USING_SPI
  33. bool "Using SPI Bus/Device device drivers"
  34. default n
  35. if RT_USING_SPI
  36. config RT_USING_SFUD
  37. bool "Using Serial Flash Universal Driver"
  38. default n
  39. if RT_USING_SFUD
  40. config RT_SFUD_USING_SFDP
  41. bool "Using auto probe flash JEDEC SFDP parameter"
  42. default y
  43. config RT_SFUD_USING_FLASH_INFO_TABLE
  44. bool "Using defined supported flash chip information table"
  45. default y
  46. config RT_SFUD_DEBUG
  47. bool "Show more SFUD debug information"
  48. default n
  49. endif
  50. config RT_USING_W25QXX
  51. bool "Using W25QXX SPI NorFlash"
  52. default n
  53. config RT_USING_GD
  54. bool "Using GD SPI NorFlash"
  55. default n
  56. config RT_USING_ENC28J60
  57. bool "Using ENC28J60 SPI Ethernet network interface"
  58. select RT_USING_LWIP
  59. default n
  60. config RT_USING_SPI_WIFI
  61. bool "Using RW009/007 SPI Wi-Fi wireless interface"
  62. select RT_USING_LWIP
  63. default n
  64. endif
  65. config RT_USING_WDT
  66. bool "Using Watch Dog device drivers"
  67. default n
  68. config RT_USING_USB_HOST
  69. bool "Using USB host"
  70. default n
  71. if RT_USING_USB_HOST
  72. config RT_USBH_ADK
  73. bool "Enable connected with Android by ADK USB"
  74. default n
  75. endif
  76. config RT_USING_USB_DEVICE
  77. bool "Using USB device"
  78. default n
  79. if RT_USING_USB_DEVICE
  80. config RT_USB_DEVICE_CDC
  81. bool "Enable to use device as CDC device"
  82. default n
  83. config RT_USB_DEVICE_MSTORAGE
  84. bool "Enable to use device as Mass Storage device"
  85. default n
  86. endif
  87. endmenu