KConfig 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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_W25QXX
  37. bool "Using W25QXX SPI NorFlash"
  38. default n
  39. config RT_USING_GD
  40. bool "Using GD SPI NorFlash"
  41. default n
  42. config RT_USING_ENC28J60
  43. bool "Using ENC28J60 SPI Ethernet network interface"
  44. select RT_USING_LWIP
  45. default n
  46. config RT_USING_SPI_WIFI
  47. bool "Using RW009/007 SPI Wi-Fi wireless interface"
  48. select RT_USING_LWIP
  49. default n
  50. endif
  51. config RT_USING_WDT
  52. bool "Using Watch Dog device drivers"
  53. default n
  54. config RT_USING_USB_HOST
  55. bool "Using USB host"
  56. default n
  57. if RT_USING_USB_HOST
  58. config RT_USBH_ADK
  59. bool "Enable connected with Android by ADK USB"
  60. default n
  61. endif
  62. config RT_USING_USB_DEVICE
  63. bool "Using USB device"
  64. default n
  65. if RT_USING_USB_DEVICE
  66. config RT_USB_DEVICE_CDC
  67. bool "Enable to use device as CDC device"
  68. default n
  69. config RT_USB_DEVICE_MSTORAGE
  70. bool "Enable to use device as Mass Storage device"
  71. default n
  72. endif
  73. endmenu