Kconfig 642 B

12345678910111213141516171819202122232425262728293031323334
  1. menu "Hardware Drivers Config"
  2. config SOC_GD32VF103V
  3. bool
  4. select SOC_SERIES_GD32VF103V
  5. default y
  6. menu "Onboard Peripheral Drivers"
  7. config BSP_USING_USART
  8. bool "Enable USART (usart0)"
  9. select BSP_USING_UART
  10. select BSP_USING_UART0
  11. default y
  12. endmenu
  13. menu "On-chip Peripheral Drivers"
  14. menuconfig BSP_USING_UART
  15. bool "Enable USART"
  16. default y
  17. select RT_USING_SERIAL
  18. if BSP_USING_UART
  19. config BSP_USING_UART0
  20. bool "Enable USART0"
  21. default y
  22. endif
  23. endmenu
  24. menu "Board extended module Drivers"
  25. endmenu
  26. endmenu