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