Kconfig 927 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. menu "Drivers Configuration"
  2. menuconfig BSP_USING_SDIO
  3. bool "Enable SDIO"
  4. select RT_USING_SDIO
  5. default n
  6. if BSP_USING_SDIO
  7. config BSP_USING_SDIO0
  8. bool "Enable SDIO0"
  9. default n
  10. if BSP_USING_SDIO0
  11. config BSP_SDIO0_EMMC
  12. bool "Enable eMMC"
  13. default y
  14. config BSP_SDIO0_1V8
  15. bool "Enable 1.8V"
  16. default y
  17. endif
  18. config BSP_USING_SDIO1
  19. bool "Enable SDIO1"
  20. default y
  21. config BSP_SD_SDIO_DEV
  22. int "SDIO device SdCard on"
  23. range 0 1
  24. default 1
  25. config BSP_SD_MNT_DEVNAME
  26. string "The name of the SD-BlkDev to be mounted"
  27. default "sd13"
  28. endif
  29. endmenu