Kconfig 773 B

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