Kconfig 960 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. menu "Hardware Drivers Config"
  2. menu "On-chip Peripheral Drivers"
  3. config BSP_USING_GPIO
  4. bool "Enable zynq MIO"
  5. select RT_USING_PIN
  6. default y
  7. menuconfig BSP_USING_UART
  8. bool "Enable UART"
  9. default y
  10. select RT_USING_SERIAL
  11. if BSP_USING_UART
  12. config BSP_USING_UART0
  13. bool "Enable UART0"
  14. default y
  15. config BSP_USING_UART1
  16. bool "Enable UART1"
  17. default n
  18. endif
  19. config BSP_USING_SPIFLASH
  20. bool "Enable spi flash"
  21. select RT_USING_FAL
  22. default n
  23. menuconfig BSP_USING_SDIO
  24. bool "Enable sdio (emmc)"
  25. default n
  26. if BSP_USING_SDIO
  27. config BSP_USING_SDIO0
  28. bool "Enable sdio0"
  29. default n
  30. config BSP_USING_SDIO1
  31. bool "Enable sdio1"
  32. default n
  33. endif
  34. endmenu
  35. endmenu