Kconfig 905 B

1234567891011121314151617181920212223242526272829303132
  1. config RT_USING_SDIO
  2. bool "Using SD/MMC device drivers"
  3. select RT_USING_BLK
  4. default n
  5. if RT_USING_SDIO
  6. config RT_SDIO_STACK_SIZE
  7. int "The stack size for sdio irq thread"
  8. default 512
  9. config RT_SDIO_THREAD_PRIORITY
  10. int "The priority level value of sdio irq thread"
  11. default 15
  12. config RT_MMCSD_STACK_SIZE
  13. int "The stack size for mmcsd thread"
  14. default 1024
  15. config RT_MMCSD_THREAD_PRIORITY
  16. int "The priority level value of mmcsd thread"
  17. default 22
  18. config RT_MMCSD_MAX_PARTITION
  19. int "mmcsd max partition"
  20. default 16
  21. config RT_SDIO_DEBUG
  22. bool "Enable SDIO debug log output"
  23. default n
  24. config RT_USING_SDHCI
  25. bool "Using sdhci for sd/mmc drivers"
  26. default n
  27. endif