Kconfig 1012 B

123456789101112131415161718192021222324252627282930313233343536
  1. menuconfig 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 IDLE_THREAD_STACK_SIZE
  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 IDLE_THREAD_STACK_SIZE
  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
  28. if RT_USING_DM && RT_USING_SDIO
  29. rsource "host/Kconfig"
  30. endif