Kconfig 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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_WDT
  33. bool "Enable Watchdog Timer"
  34. select RT_USING_WDT
  35. default n
  36. if BSP_USING_WDT
  37. config BSP_USING_WDT0
  38. bool "Enable WDT0"
  39. default n
  40. config BSP_USING_WDT1
  41. bool "Enable WDT1"
  42. default n
  43. endif
  44. config BSP_UTEST_DRIVERS
  45. bool "Enable drivers utest"
  46. select RT_USING_UTEST
  47. default n
  48. endmenu