Kconfig 747 B

12345678910111213141516171819202122232425262728293031323334353637383940
  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. config BSP_USING_GPIO
  15. bool "Enable GPIO"
  16. select RT_USING_PIN
  17. default y
  18. menuconfig BSP_USING_UART
  19. bool "Enable USART"
  20. default y
  21. select RT_USING_SERIAL
  22. if BSP_USING_UART
  23. config BSP_USING_UART0
  24. bool "Enable USART0"
  25. default y
  26. endif
  27. endmenu
  28. menu "Board extended module Drivers"
  29. endmenu
  30. endmenu