From 43531cc27684cbcb986c7eef21b29be6186e6415 Mon Sep 17 00:00:00 2001 From: tangyuxin <462747508@qq.com> Date: Sat, 23 Jun 2018 11:23:59 +0800 Subject: [PATCH] =?UTF-8?q?[components][drivers]Kconfig=E6=B7=BB=E5=8A=A0S?= =?UTF-8?q?DIO=E7=9B=B8=E5=85=B3=E9=85=8D=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/drivers/Kconfig | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/components/drivers/Kconfig b/components/drivers/Kconfig index 1eb23df2f1..53468e1f90 100755 --- a/components/drivers/Kconfig +++ b/components/drivers/Kconfig @@ -112,6 +112,28 @@ config RT_USING_SDIO bool "Using SD/MMC device drivers" default n + if RT_USING_SDIO + config RT_SDIO_STACK_SIZE + int "The stack size for sdio irq thread" + default 512 + + config RT_SDIO_THREAD_PRIORITY + int "The priority level value of sdio irq thread" + default 15 + + config RT_MMCSD_STACK_SIZE + int "The stack size for mmcsd thread" + default 1024 + + config RT_MMCSD_THREAD_PREORITY + int "The priority level value of mmcsd thread" + default 22 + + config RT_MMCSD_MAX_PARTITION + int "mmcsd max partition" + default 16 + endif + config RT_USING_SPI bool "Using SPI Bus/Device device drivers" default n