4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-02-25 20:47:26 +08:00
2023-12-29 22:13:09 +08:00

44 lines
960 B
Plaintext

menu "Hardware Drivers Config"
menu "On-chip Peripheral Drivers"
config BSP_USING_GPIO
bool "Enable zynq MIO"
select RT_USING_PIN
default y
menuconfig BSP_USING_UART
bool "Enable UART"
default y
select RT_USING_SERIAL
if BSP_USING_UART
config BSP_USING_UART0
bool "Enable UART0"
default y
config BSP_USING_UART1
bool "Enable UART1"
default n
endif
config BSP_USING_SPIFLASH
bool "Enable spi flash"
select RT_USING_FAL
default n
menuconfig BSP_USING_SDIO
bool "Enable sdio (emmc)"
default n
if BSP_USING_SDIO
config BSP_USING_SDIO0
bool "Enable sdio0"
default n
config BSP_USING_SDIO1
bool "Enable sdio1"
default n
endif
endmenu
endmenu