12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- 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
|