4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-02-04 18:44:35 +08:00
guo ecf2d82159
sync branch rt-smart. (#6641)
* Synchronize the code of the rt mart branch to the master branch.
  * TTY device
  * Add lwP code from rt-smart
  * Add vnode in DFS, but DFS will be re-write for rt-smart
  * There are three libcpu for rt-smart:
    * arm/cortex-a, arm/aarch64
    * riscv64

Co-authored-by: Rbb666 <zhangbingru@rt-thread.com>
Co-authored-by: zhkag <zhkag@foxmail.com>
2022-12-03 12:07:44 +08:00

49 lines
728 B
Plaintext

menu "SDMMC Devices"
config DRIVERS_SDMMC
bool "enable SDMMC drivers"
default y
if DRIVERS_SDMMC
config USE_SD
bool "enable SD"
default y
config USE_SDIO
bool "enable SDIO"
default y
config USE_MMC
bool "enable mmc"
default n
config DETECT_CARD
bool "enable detect card"
default y
config SDC_DMA_USED
bool "enable dma transmission"
default y
config SDIO_IRQ_SUPPORT
bool "enable sdio irq"
default y
config SD_TEST
select USE_SD
bool "enable SD Card test case."
default y
config SDC_DMA_BUF_SIZE
int "SD Card Align DMA Buffer Size(Kbyte)."
depends on SDC_DMA_USED
default 64
config DRIVERS_SDC_CDPIN_PRESENT_VAL
int "sdc card detect pin present value"
default 0
endif
endmenu