Kconfig 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. menu "Drivers Configuration"
  2. config BSP_USING_HARDLOCK
  3. bool "Enable Hard-Lock"
  4. default y
  5. menuconfig BSP_USING_SDIO
  6. bool "Enable SDIO"
  7. select RT_USING_SDIO
  8. default y
  9. if BSP_USING_SDIO
  10. choice BSP_SDIO_DEV
  11. prompt "Select SDIO device"
  12. default BSP_USING_SDIO0
  13. help
  14. Select the SDIO device to be used.
  15. config BSP_USING_SDIO0
  16. bool "Enable SDIO0"
  17. if BSP_USING_SDIO0
  18. config BSP_SDIO0_EMMC
  19. bool "Enable eMMC"
  20. default n
  21. config BSP_SDIO0_1V8
  22. bool "Enable 1.8V"
  23. default n
  24. endif
  25. config BSP_USING_SDIO1
  26. bool "Enable SDIO1"
  27. endchoice
  28. config BSP_SD_MNT_DEVNAME
  29. string "The name of the SD-BlkDev to be mounted"
  30. default "sd0p1"
  31. endif
  32. menuconfig BSP_USING_TIMERS
  33. bool "Enable Hardware Timers"
  34. select RT_USING_HWTIMER
  35. default n
  36. if BSP_USING_TIMERS
  37. config BSP_USING_TIMER0
  38. bool "Enable Timer0"
  39. default n
  40. config BSP_USING_TIMER1
  41. bool "Enable Timer1"
  42. default n
  43. config BSP_USING_TIMER2
  44. bool "Enable Timer2"
  45. default n
  46. config BSP_USING_TIMER3
  47. bool "Enable Timer3"
  48. default n
  49. config BSP_USING_TIMER4
  50. bool "Enable Timer4"
  51. default n
  52. config BSP_USING_TIMER5
  53. bool "Enable Timer5"
  54. default n
  55. endif
  56. menuconfig BSP_USING_WDT
  57. bool "Enable Watchdog Timer"
  58. select RT_USING_WDT
  59. default n
  60. if BSP_USING_WDT
  61. config BSP_USING_WDT0
  62. bool "Enable WDT0"
  63. default n
  64. config BSP_USING_WDT1
  65. bool "Enable WDT1"
  66. default n
  67. endif
  68. config BSP_UTEST_DRIVERS
  69. bool "Enable drivers utest"
  70. select RT_USING_UTEST
  71. default n
  72. endmenu