Kconfig 658 B

1234567891011121314151617181920212223242526272829303132333435
  1. menu "Hardware Drivers Config"
  2. menu "Onboard Peripheral Drivers"
  3. endmenu
  4. menu "On-chip Peripheral Drivers"
  5. menuconfig BSP_USING_UART
  6. bool "Enable UART"
  7. default y
  8. select RT_USING_SERIAL
  9. if BSP_USING_UART
  10. config BSP_USING_UART0
  11. bool "Enable UART0"
  12. default y
  13. endif
  14. menuconfig BSP_USING_SDIO
  15. bool "Enable SDIO"
  16. default y
  17. if BSP_USING_SDIO
  18. config BSP_USING_SD0
  19. bool "Enable SD0 EMMC"
  20. default y
  21. endif
  22. endmenu
  23. menu "Board extended module Drivers"
  24. endmenu
  25. endmenu