Kconfig 771 B

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